{% for result in object_list %}
-
- {{ result.date|date }}: {{ result.title }}
-
+ {% if result.get_model_name == 'post' %}
+ {% include 'search/post.html' %}
+ {% elif result.get_model_name == 'etherpad' %}
+ {% include 'search/etherpad.html' %}
+ {% elif result.get_model_name == 'member' %}
+ {% include 'search/member.html' %}
+ {% elif result.get_model_name == 'album' %}
+ {% include 'search/album.html' %}
+ {% endif %}
{% empty %}
-
No results found.
+
+ Keine Ergebnisse gefunden.
+
{% endfor %}
+
{% endif %}
-