diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-02-24 22:26:27 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-02-24 22:26:27 (GMT) |
commit | a1064414914efd53ef1c44ee12392fef8a0c0b0f (patch) | |
tree | 60588ab162cdd607f5236d73750e4d3d6217d793 /program/templates | |
parent | 1b2eb2aea52e754ad167c63259eec80e35497dfa (diff) | |
parent | f7f4a5d5378b37c32b64bf0f71d0a438fd5d19d8 (diff) |
Merge branch 'add-languages' into stable
Diffstat (limited to 'program/templates')
-rw-r--r-- | program/templates/boxes/language.html | 15 | ||||
-rw-r--r-- | program/templates/day_schedule.html | 1 | ||||
-rw-r--r-- | program/templates/show_list.html | 1 |
3 files changed, 17 insertions, 0 deletions
diff --git a/program/templates/boxes/language.html b/program/templates/boxes/language.html new file mode 100644 index 0000000..050c342 --- /dev/null +++ b/program/templates/boxes/language.html @@ -0,0 +1,15 @@ +{% if language_list %} + <dl id="filterbox_language" class="portlet filterbox"> + <dt class="portletHeader"><span>Sprache<span></dt> + <dd class="portletItem"> + <ul> + {% for language in language_list %} + <li> + <a title="Sendungen auf {{ language.name }} anzeigen." + href="?language={{ language.slug }}">{{ language.name }}/{{ language.native_name }}</a> + </li> + {% endfor %} + </ul> + </dd> + </dl> +{% endif %} diff --git a/program/templates/day_schedule.html b/program/templates/day_schedule.html index eb0d3d7..2215211 100644 --- a/program/templates/day_schedule.html +++ b/program/templates/day_schedule.html @@ -46,6 +46,7 @@ {% musicfocus %} {% showinformation %} {% showtopic %} +{# {% language %} #} </div> {% endcomment %} diff --git a/program/templates/show_list.html b/program/templates/show_list.html index d9b9a47..0602335 100644 --- a/program/templates/show_list.html +++ b/program/templates/show_list.html @@ -15,6 +15,7 @@ {% musicfocus %} {% showinformation %} {% showtopic %} + {# {% language %} #} </div> <div id="content-main" class="show-list"> |