|
|
|
@@ -3,16 +3,16 @@ |
|
|
|
|
|
|
|
{% block content %} |
|
|
|
<p></p> |
|
|
|
<link rel="stylesheet" type="text/css" href="{% static "datenbank/css/index.css"%}"> |
|
|
|
<div id="datenbank_html"> |
|
|
|
<table class="tabledatabase"> |
|
|
|
<link rel="stylesheet" type="text/css" href="{% static "news/css/index.css"%}"> |
|
|
|
<div id="news_html"> |
|
|
|
<table class="tablenews"> |
|
|
|
<tr> |
|
|
|
<th style="width:33%"/> |
|
|
|
<th style="width:33%"/> |
|
|
|
<th style="width:33%"/> |
|
|
|
</tr> |
|
|
|
<tr class="trdatabase"> |
|
|
|
<td class="tddatabase" colspan="3"> |
|
|
|
<tr class="trnews"> |
|
|
|
<td class="tdnews" colspan="3"> |
|
|
|
<p id="description"> |
|
|
|
Bald wird gewählt in Goethopia! Hier erfährst du welche Parteien zur Wahl stehen |
|
|
|
und wer als Präsidentin kandidiert! |
|
|
|
@@ -21,7 +21,7 @@ |
|
|
|
</tr> |
|
|
|
{% if rows|length == 0 %} |
|
|
|
<tr> |
|
|
|
<td class="tddatabase" colspan="3"> |
|
|
|
<td class="tdnews" colspan="3"> |
|
|
|
<p id="description"> |
|
|
|
<b>Keine Parteien gefunden</b> |
|
|
|
</p> |
|
|
|
@@ -29,13 +29,13 @@ |
|
|
|
</tr> |
|
|
|
{% endif %} |
|
|
|
{% for row in rows %} |
|
|
|
<tr class="trdatabase"> |
|
|
|
<tr class="trnews"> |
|
|
|
{% for entry in row %} |
|
|
|
<td class="tddatabase" align="{% cycle "left" "center" "right" %}"> |
|
|
|
<td class="tdnews" align="{% cycle "left" "center" "right" %}"> |
|
|
|
<div class="polaroid"> |
|
|
|
<!--<a class="thumbnail" href="{{ entry.element.url }}">--> |
|
|
|
<!--<img src="{{ entry.image.url }}" alt="Verfassung">--> |
|
|
|
<!--</a>--> |
|
|
|
<a class="thumbnail" href="{{ entry.url }}"> |
|
|
|
<img src="{{ entry.image.url }}" alt="Verfassung"> |
|
|
|
</a> |
|
|
|
<div class="container"> |
|
|
|
<p>{{ entry.partei.name }}</p> |
|
|
|
</div> |
|
|
|
|