mirror of
				https://gitlab.com/animath/si/plateforme-corres2math.git
				synced 2025-11-04 11:12:21 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% load crispy_forms_filters highlight i18n %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <h2>{% trans "Search" %}</h2>
 | 
						|
 | 
						|
    <form>
 | 
						|
        {% csrf_token %}
 | 
						|
        {{ form|crispy }}
 | 
						|
        <button type="submit" class="btn btn-primary">{% trans "Search" %}</button>
 | 
						|
    </form>
 | 
						|
 | 
						|
    <hr>
 | 
						|
 | 
						|
    <h3>{% trans "Results" %}</h3>
 | 
						|
 | 
						|
    <div id="search-results">
 | 
						|
        {% regroup page.object_list by model_name as categories %}
 | 
						|
        {% for category in categories %}
 | 
						|
            <h4>{% trans category.grouper|capfirst %}</h4>
 | 
						|
            {% for result in category.list %}
 | 
						|
                <p>
 | 
						|
                    <a href="{{ result.object.get_absolute_url }}">{{ result.object }}</a>
 | 
						|
                </p>
 | 
						|
            {% endfor %}
 | 
						|
        {% empty %}
 | 
						|
            <p>{% trans "No results found." %}</p>
 | 
						|
        {% endfor %}
 | 
						|
 | 
						|
        {% if page.has_previous or page.has_next %}
 | 
						|
            <div>
 | 
						|
                {% if page.has_previous %}<a href="?q={{ query }}&page={{ page.previous_page_number }}">{% endif %}« Previous{% if page.has_previous %}</a>{% endif %}
 | 
						|
                |
 | 
						|
                {% if page.has_next %}<a href="?q={{ query }}&page={{ page.next_page_number }}">{% endif %}Next »{% if page.has_next %}</a>{% endif %}
 | 
						|
            </div>
 | 
						|
        {% endif %}
 | 
						|
    </div>
 | 
						|
{% endblock %} |