diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-28 18:49:32 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-28 18:49:32 (GMT) |
commit | d4c75b4893bfcb28e300ff5e10dc9cd0993f8537 (patch) | |
tree | 53cbd2c37bf6183b5cd61b0c8b515ae24088b8da /program/templates/boxes/recommendations.html | |
parent | f44cf6587f67095f777c4847e5cc12c5fbef957e (diff) |
fixed urls and file locations
Diffstat (limited to 'program/templates/boxes/recommendations.html')
-rw-r--r-- | program/templates/boxes/recommendations.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/program/templates/boxes/recommendations.html b/program/templates/boxes/recommendations.html new file mode 100644 index 0000000..2174654 --- /dev/null +++ b/program/templates/boxes/recommendations.html @@ -0,0 +1,40 @@ +<!doctype html> +<html> +<head> + <meta charset="utf-8"/> + <title>Recomendations box</title> +</head> +<body> + {% if recommendation_list %} + <dl id="recommendations" class="portlet program-box"> + <dt class="portletHeader">Programmhinweise</dt> + <dd class="portletItem"> + <table> + {% for item in recommendation_list %} + <tr> + <td class="start"> </td> + <td class="format bf-{{ item.show.broadcastformat.slug }}" + title="{{ item.show.broadcastformat.format }}"> </td> + <td class="show"> + {{ item.start|date:"d.m. H:i" }} - + {{ item.end|date:"H:i" }}<br /> + <h3> + <a href="{% url timeslot-detail item.id %}">{{ item.show.name }}</a> + </h3> + <p class="note-title"> + {% if item.note %} + {{ item.note.title }}<br /> + {% else %} + {{ item.show.broadcastformat.format }}<br /> + {% endif %} + <a href="{% url timeslot-detail item.id %}">[weiter]</a> + </p> + </td> + </tr> + {% endfor %} + </table> + </dd> + </dl> + {% endif %} +</body> +</html> |