Files
SaS/web_dev/sas_web/news/templates/news/praesident.html
T

48 lines
1.1 KiB
HTML

{% extends "public/default.html" %}
{% load static %}
{% block content %}
<link rel="stylesheet" type="text/css" href="{% static "news/css/partei.css"%}">
<div style="width:100%;">
<img src="{{ entry.image.url }}" id="partei_bild">
</div>
<table class="tablepartei">
<tr>
<th style="width:20%"/>
<th style="width:80%"/>
</tr>
<tr class="trpartei">
<td>
<p><b>Name</b></p>
</td>
<td>
<p>{{ entry.praesident.name }}</p>
</td>
</tr>
<tr class="trpartei">
<td>
<p><b>Über mich:</b></p>
</td>
<td>
<p>{{ entry.wahlprogramm|linebreaks }}</p>
</td>
</tr>
<tr class="trpartei">
<td>
<p><b>Weitere Informationen</b></p>
</td>
<td>
{% for attachment in entry.praesidentanhang_set.all %}
<a href="{{ attachment.data.url }}">{{ attachment.name }}</a><br>
{% endfor %}
</td>
</tr>
</table>
<p><a href="{% url "news:index" %}">Zurück zur Übersicht</a></p>
{% endblock %}