~alcinnz/bureaucromancy

ref: 1030d237866bf99999711515fa46dd9fdf729324 bureaucromancy/tpl/cal/timezone.html -rw-r--r-- 495 bytes
1030d237 — Adrian Cochrane Internationalize form validation. 11 months ago
                                                                                
93bfa89a Adrian Cochrane
34609eab Adrian Cochrane
93bfa89a Adrian Cochrane
34609eab Adrian Cochrane
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "/base.html" %}

{%- block main -%}<section>
  <ul style="list-style: none">{% for cont in continents %}
    <li><a href="{{cont|xURI}}">{{ cont }}</a></li>
  {% endfor %}</ul>
</section>
<section>
  <h2><a href="..">{{ T.zone }}</a></h2>
  <ul style="display: flex; flex-wrap: wrap; justify-content: space-between; list-style: none">{% for tz in zones %}
    <li><a href="../zone={{tz.value}}">{{ tz.label }}</a> ({{ tz.offset }})</li>
  {% endfor %}</ul>
</section>{%- endblock -%}