X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=templates%2F_macros.html;h=55ab626b1fe6bbb7f49b3ab41c9dbb24bf56d792;hb=1ac1d92bba8caeeadf2f853cf15b9158c6024908;hp=cb1bb452d16f3671ab7108a159b1c581ec063890;hpb=8542cd471f1aeea1abbe0b237a94f7863fb12dd0;p=plomtask diff --git a/templates/_macros.html b/templates/_macros.html index cb1bb45..55ab626 100644 --- a/templates/_macros.html +++ b/templates/_macros.html @@ -1,16 +1,27 @@ {% 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 %} @@ -18,6 +29,7 @@ {% macro simple_checkbox_table(title, items, type_name, list_name, add_string="add", historical=false) %} +{% if items|length > 0 %} {% for item in items %} @@ -30,13 +42,15 @@ {% endfor %}
-{{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 %}