mirror of
https://github.com/HS-Flensburg-Klein/hausarbeit-hikmat_galan_neumann_stark_becker
synced 2025-02-23 17:03:32 +00:00
13 lines
326 B
HTML
13 lines
326 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="detail-container">
|
||
|
<h1>By {{ comment.author }}</h1>
|
||
|
<h3>Timestamp: {{ comment.timestamp }}</h3>
|
||
|
<h3>Menu: <a href="{% url 'mensaviewer:menu_detail' comment.menu.pk %}">{{ comment.menu.name }}</a></h3>
|
||
|
<h3>Text: {{ comment.text }}</h3>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|