X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=templates%2F_macros.html;h=55ab626b1fe6bbb7f49b3ab41c9dbb24bf56d792;hb=fa05073a6ebaf46e8f72bec10a3dc03021ce704c;hp=25d94c58ce72a0a52f483c3251a30f9c3496ab51;hpb=f59afccd32d45e60c48d451e6b8304a817627c62;p=plomtask diff --git a/templates/_macros.html b/templates/_macros.html index 25d94c5..55ab626 100644 --- a/templates/_macros.html +++ b/templates/_macros.html @@ -1,23 +1,35 @@ {% macro edit_buttons() %} +
+
{% endmacro %} -{% macro datalist_of_titles(title, candidates) %} +{% macro datalist_of_titles(title, candidates, historical=false, with_comments=false) %} {% for candidate in candidates %} - + {% endfor %} {% endmacro %} -{% macro simple_checkbox_table(title, items, type_name, list_name, add_string="add") %} +{% macro simple_checkbox_table(title, items, type_name, list_name, add_string="add", historical=false) %} +{% if items|length > 0 %} {% for item in items %} @@ -25,18 +37,20 @@ {% endfor %}
-{{item.title.newest|e}} +{% if historical is true %}{{item.title_then}}{% else %}{{item.title.newest|e}}{% endif %}
-{{add_string}}: +{% endif %} +{{add_string}}: {% endmacro %} {% macro history_page(item_name, item, attribute_name, attribute, as_pre=false) %}

{{item_name}} {{attribute_name}} history

+
@@ -44,12 +58,15 @@ + {% for date in attribute.history.keys() | sort(reverse=True) %} - + {% endfor %}
{{item.title.newest|e}}
{{date | truncate(19, True, '') }} {% if as_pre %}
{% endif %}{{attribute.history[date]}}{% if as_pre %}
{% endif %}
+ +
{% endmacro %}