27 lines
		
	
	
		
			585 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			585 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% comment %}
 | 
						|
Display list of items as small list
 | 
						|
 | 
						|
Context:
 | 
						|
- object_list: object list
 | 
						|
- list_url: url to complete list page
 | 
						|
{% endcomment %}
 | 
						|
{% load i18n aircox %}
 | 
						|
 | 
						|
{% for object in object_list %}
 | 
						|
{% page_widget "item" object %}
 | 
						|
{% endfor %}
 | 
						|
 | 
						|
{% if list_url %}
 | 
						|
<br>
 | 
						|
<nav class="pagination is-centered">
 | 
						|
    <ul class="pagination-list">
 | 
						|
        <li>
 | 
						|
            <a href="{{ list_url }}" class="pagination-link"
 | 
						|
                aria-label="{% translate "Show all publications" %}">
 | 
						|
                {% translate "Show more" %}
 | 
						|
            </a>
 | 
						|
        </li>
 | 
						|
    </ul>
 | 
						|
</nav>
 | 
						|
{% endif %}
 |