don't like the tag lists
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Wed, 6 Mar 2013 10:28:21 +0000 (11:28 +0100)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Wed, 6 Mar 2013 10:28:21 +0000 (11:28 +0100)
prawokultury/templates/base.html
questions/templates/questions/question_list.html

index f31d0a7..86eb25b 100755 (executable)
@@ -10,7 +10,7 @@
         {% compressed_css 'base' %}
 
         <meta charset="UTF-8" />
-        <meta property='og:url' content='{% block "ogurl" %}{% url 'migdal_main' %}{% endblock %}' />
+        <meta property='og:url' content='{% block "ogurl" %}{{ request.get_full_path|build_absolute_uri:request }}{% endblock %}' />
         <meta property='og:title' content='{% block "ogtitle" %}{% trans "Right to Culture" %}{% endblock %}' />
         <meta property='og:site_name' content='{% trans "Right to Culture" %}' />
         <meta property='og:description' content='{% block "ogdescription" %}Prawokultury.pl to strona edukacyjna mająca za zadanie w przystępny i rzetelny sposób informować o wszelkich kwestiach związanych z prawem autorskim.{% endblock %}' />
index f458772..240fcf2 100755 (executable)
@@ -47,12 +47,6 @@ Tematy:
 <ul class='questions'>
 {% for question in object_list %}
     <li><a href="{{ question.get_absolute_url }}">{{ question }}</a>
-        {% if question.tags.all.count %}
-        <br/>Tematy: 
-        {% for tag in question.tags.all %}
-            <a href="?tag={{ tag.slug }}">{{ tag }}</a>{% if not forloop.last %} / {% endif %}
-        {% endfor %}
-        {% endif %}
     </li>
 {% endfor %}
 </ul>