You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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 %}
|