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.
13 lines
362 B
HTML
13 lines
362 B
HTML
2 years ago
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<div class="detail-container">
|
||
|
<h1>By {{ newsarticle.author }}</h1>
|
||
|
<h3>Timestamp: {{ newsarticle.timestamp }}</h3>
|
||
|
<h3>Location: <a href="{% url 'mensaviewer:location_detail' newsarticle.location.pk %}">{{ newsarticle.location.name }}</a></h3>
|
||
|
<h3>Text: {{ newsarticle.text }}</h3>
|
||
|
</div>
|
||
|
|
||
|
{% endblock %}
|