Schule als Staat Projekt Web, Dokumente, etc.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

50 lignes
1.7KB

  1. {% extends "public/default.html" %}
  2. {% load static %}
  3. {% block content %}
  4. <link rel="stylesheet" type="text/css" href="{% static "datenbank/css/index.css"%}">
  5. <div id="datenbank_html">
  6. <table class="tabledatabase">
  7. <tr>
  8. <th style="width:33%"/>
  9. <th style="width:33%"/>
  10. <th style="width:33%"/>
  11. </tr>
  12. <tr class="trdatabase">
  13. <td class="tddatabase" colspan="3">
  14. <p id="description">
  15. Dies ist eine Datenbank mit allen Dokumenten, die die
  16. Goethopische Agentur für politische Bildung herausgebracht hat.
  17. Jedes der Elemente ist auf das dazugehörige PDF-Dokument verlinkt.
  18. </p>
  19. </td>
  20. </tr>
  21. {% if rows|length == 0 %}
  22. <tr>
  23. <td class="tddatabase" colspan="3">
  24. <p id="description">
  25. <b>Keine Einträge für den Suchbegriff "{{ query }}" gefunden.</b>
  26. </p>
  27. </td>
  28. </tr>
  29. {% endif %}
  30. {% for row in rows %}
  31. <tr class="trdatabase">
  32. {% for entry in row %}
  33. <td class="tddatabase" align="{% cycle "left" "center" "right" %}">
  34. <div class="polaroid">
  35. <a class="thumbnail" href="{{ entry.element.url }}">
  36. <img src="{{ entry.image.url }}" alt="Verfassung">
  37. </a>
  38. <div class="container">
  39. <p>{{ entry.title }}</p>
  40. </div>
  41. </div>
  42. </td>
  43. {% endfor %}
  44. </tr>
  45. {% endfor %}
  46. </table>
  47. </div>
  48. {% endblock %}