mirror of
https://github.com/HS-Flensburg-Klein/hausarbeit-hikmat_galan_neumann_stark_becker
synced 2025-02-23 11:33:32 +00:00
13 lines
362 B
HTML
13 lines
362 B
HTML
|
{% 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 %}
|