]> git.0d.be Git - panikweb.git/blobdiff - panikweb_templates/templates/nonstop_playlist.html
move static & templates to panikweb project directory
[panikweb.git] / panikweb_templates / templates / nonstop_playlist.html
diff --git a/panikweb_templates/templates/nonstop_playlist.html b/panikweb_templates/templates/nonstop_playlist.html
deleted file mode 100644 (file)
index 61f0464..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-{% extends "emissions.html" %}
-{% load paniktags staticfiles i18n thumbnail %}
-{% block bodyID %}Emissions{% endblock %}
-{% block title %}{{ emission.title }}{% endblock %}
-
-{% block toptitle %}
-<h1 class="top"><a href="{% url 'grid' %}">{% trans 'Program' %}</a></h1>
-{% endblock %}
-{% block nav %}
-       {% emission_nav %}
-{% endblock %}
-{% block main %}
-<div class="wrapper navigation cf">
-       <div id="Emission-container" class="emission">
-               <header>
-                       <h3>{% trans 'Playlist' %} - {{date|date:'l d F Y'|lower}}</h3>
-               </header>
-
-               <table class="playlist">
-               {% for track in tracks %}
-               {% if track.filepath.track.title %}
-               <tr>
-                       <td class="tracktime">{{track.play_timestamp|date:'H:i'}}</td>
-                       <td class="tracktitle">{{track.filepath.track.title }}</td>
-                       <td class="trackartist">{{track.filepath.track.artist.name }}</td>
-               </tr>
-               {% endif %}
-               {% endfor %}
-               </table>
-
-               {% if not tracks|length %}
-               <p>
-               {% if future %}Pas encore de playlist connue, à plus tard ?{% else %}Pas de playlist connue.{% endif %}
-               </p>
-               {% endif %}
-
-               <p class="playlist-disclaimer">
-                       N.B. Débordements d'émissions et autres manifestations
-                       radiophoniques spontanées peuvent amener cette liste à ne pas être
-                       totalement correcte.
-               </p>
-
-       </div>
-</div>
-{% endblock %}
-
-{% block links %}
-{% endblock %}