in front log

This commit is contained in:
cube
2026-05-01 19:59:00 +01:00
parent 9fcaf72457
commit 23b0819079

View File

@@ -17,7 +17,7 @@
<div class="maintext">Front change history</div> <div class="maintext">Front change history</div>
<div class="log"> <div class="log">
{% for front in front_log %} {% for front in front_log %}
<p><b>{{ get_datetime_str(front[2]) }}</b> - {{ get_member(front[1])[3] }}{% if front[3] %} <i>(ended: {{ get_datetime_str(front[3]) }})</i> | <a class="danger" href="{{ url_for('manage.delete_front_log', fid=front[0]) }}">delete</a>{% endif %}</p> <p><b>{{ get_datetime_str(front[2]) }}</b> - {{ get_member(front[1])[3]|safe }}{% if front[3] %} <i>(ended: {{ get_datetime_str(front[3]) }})</i> | <a class="danger" href="{{ url_for('manage.delete_front_log', fid=front[0]) }}">delete</a>{% endif %}</p>
{% endfor %} {% endfor %}
</div> </div>