From 18b57522b7dcfe210b627bbc665c000cba53b1ae Mon Sep 17 00:00:00 2001 From: Adrien Dorsaz Date: Tue, 30 Jul 2013 18:43:12 +0200 Subject: Use simple quotes instead of double quotes for url template function --- papillon/templates/main.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'papillon/templates/main.html') diff --git a/papillon/templates/main.html b/papillon/templates/main.html index d946c73..9a3adfb 100644 --- a/papillon/templates/main.html +++ b/papillon/templates/main.html @@ -3,21 +3,21 @@ {% block content %} {% if error %}

{{error}}

{%endif%} -

{%trans "Create a poll"%}

+

{%trans "Create a poll"%}

{% trans "Create a new sondage for take a decision, find a date for a meeting, etc." %} {% trans "It's here!" %}

{% if public %} {% if polls %}

{%trans "Public polls"%}

{%endif%} {% for poll in polls %}
-

{{poll.name}}

+

{{poll.name}}

{{poll.description|safe}}

{% endfor %} {% if categories %}

{%trans "Categories"%}

{% endif %} {% for category in categories %} -

{{category.name}}

+

{{category.name}}

{% endfor %} {% endif %} {% endblock %} -- cgit v1.2.3