teilchensammler/collector/templates/collector/detail.html
bronsen 41a8cb5836
All checks were successful
ci/woodpecker/push/workflow/1 Pipeline was successful
ci/woodpecker/push/workflow/2 Pipeline was successful
[collector] templates now render html5
closes #6
2025-03-15 13:28:41 +01:00

20 lines
432 B
HTML

{% extends "collector/base.html" %}
{% block content %}
<h1>[{{ teil.id }}] {{ teil.name }}</h1>
Last Changed: {{ teil.modified | date:"Y-m-d H:i:s e" }}
<p>
See the <a href="{% url "collector:list" %}">{{ default_teile_number }} most recent Teile</a>.
</p>
<p>
See <a href="{% url "collector:list-all" %}"> ALL the Teile in the database</a>.
</p>
<p>
<a href="{% url "collector:list" %}">home</a>
</p>
{% endblock content %}