forked from rc/aircox
		
	cfr #121 Co-authored-by: Christophe Siraut <d@tobald.eu.org> Co-authored-by: bkfox <thomas bkfox net> Co-authored-by: Thomas Kairos <thomas@bkfox.net> Reviewed-on: rc/aircox#131 Co-authored-by: Chris Tactic <ctactic@noreply.git.radiocampus.be> Co-committed-by: Chris Tactic <ctactic@noreply.git.radiocampus.be>
		
			
				
	
	
		
			29 lines
		
	
	
		
			709 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			709 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "aircox/page_list.html" %}
 | 
						|
{% comment %}List of diffusions as a timetable{% endcomment %}
 | 
						|
{% load i18n aircox humanize %}
 | 
						|
 | 
						|
{% block subtitle %}{{ date|date:"l d F Y" }}{% endblock %}
 | 
						|
 | 
						|
{% block secondary-nav %}
 | 
						|
<nav class="nav secondary">
 | 
						|
    {% include "./widgets/dates_menu.html" with url_name=view.redirect_date_url %}
 | 
						|
</nav>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
 | 
						|
{% block breadcrumbs %}
 | 
						|
{{ block.super }}
 | 
						|
<a href="{% url "timetable-list" date=date %}">{{ date|date:"l d F Y" }}</a>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
 | 
						|
{% block list-container %}
 | 
						|
{% with list_class="grid" %}
 | 
						|
{{ block.super }}
 | 
						|
{% endwith %}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block list %}
 | 
						|
{% include "./widgets/logs.html" with object_list=object_list timetable=True  %}
 | 
						|
{% endblock %}
 |