mirror of
https://github.com/HS-Flensburg-Klein/hausarbeit-hikmat_galan_neumann_stark_becker
synced 2025-02-22 23:13:31 +00:00
19 lines
419 B
HTML
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 %}
|