fix column width
This commit is contained in:
@@ -5,8 +5,13 @@
|
|||||||
<link rel="stylesheet" type="text/css" href="{% static "datenbank/css/index.css"%}">
|
<link rel="stylesheet" type="text/css" href="{% static "datenbank/css/index.css"%}">
|
||||||
<div id="datenbank_html">
|
<div id="datenbank_html">
|
||||||
<table class="tabledatabase">
|
<table class="tabledatabase">
|
||||||
|
<tr>
|
||||||
|
<th style="width:33%"/>
|
||||||
|
<th style="width:33%"/>
|
||||||
|
<th style="width:33%"/>
|
||||||
|
</tr>
|
||||||
<tr class="trdatabase">
|
<tr class="trdatabase">
|
||||||
<td class="tddatabase", colspan=4>
|
<td class="tddatabase" colspan="3">
|
||||||
<p id="description">
|
<p id="description">
|
||||||
Dies ist eine Datenbank mit allen Dokumenten, die die
|
Dies ist eine Datenbank mit allen Dokumenten, die die
|
||||||
Goethopische Agentur für politische Bildung herausgebracht hat.
|
Goethopische Agentur für politische Bildung herausgebracht hat.
|
||||||
@@ -16,7 +21,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
{% if rows|length == 0 %}
|
{% if rows|length == 0 %}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="tddatabase", colspan=4>
|
<td class="tddatabase" colspan="3">
|
||||||
<p id="description">
|
<p id="description">
|
||||||
<b>Keine Einträge für den Suchbegriff "{{ query }}" gefunden.</b>
|
<b>Keine Einträge für den Suchbegriff "{{ query }}" gefunden.</b>
|
||||||
</p>
|
</p>
|
||||||
@@ -26,7 +31,7 @@
|
|||||||
{% for row in rows %}
|
{% for row in rows %}
|
||||||
<tr class="trdatabase">
|
<tr class="trdatabase">
|
||||||
{% for entry in row %}
|
{% for entry in row %}
|
||||||
<td class="tddatabase", align="{% cycle "left" "center" "right" %}">
|
<td class="tddatabase" align="{% cycle "left" "center" "right" %}">
|
||||||
<div class="polaroid">
|
<div class="polaroid">
|
||||||
<a class="thumbnail" href="{{ entry.element.url }}">
|
<a class="thumbnail" href="{{ entry.element.url }}">
|
||||||
<img src="{{ entry.image.url }}" alt="Verfassung">
|
<img src="{{ entry.image.url }}" alt="Verfassung">
|
||||||
|
|||||||
Reference in New Issue
Block a user