hausarbeit-hikmat_galan_neu.../mensaviewer/templates/comment/detail.html
Jannes Hikmat 4b07f346a0
All checks were successful
continuous-integration/drone/push Build is passing
templates, css & views nochmal überarbeitet
2023-01-08 21:16:45 +01:00

19 lines
419 B
HTML

{% extends 'base.html' %}
{% block title %}Comment{% endblock %}
{% block header %}<h1>Comment by {{ comment.author }}</h1>{% endblock %}
{% block content %}
<div class="detail-container">
<h3>Menu: <a href="{% url 'mensaviewer:menu_detail' comment.menu.pk %}">{{ comment.menu.name }}</a></h3>
<p>Timestamp: {{ comment.timestamp }}</p>
<hr>
<p>Text: </p>
<p>{{ comment.text }}</p>
</div>
{% endblock %}