diff options
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/createOrEdit.html | 3 | ||||
| -rw-r--r-- | templates/main.html | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/templates/createOrEdit.html b/templates/createOrEdit.html index abc949e..cee7616 100644 --- a/templates/createOrEdit.html +++ b/templates/createOrEdit.html @@ -1,6 +1,9 @@ {% extends "base.html" %} {% block content %} + {% if not new and not choices %} + <p class='error'>As long as no option was added to the poll, it will not be made available.</p> + {% endif %} <h2>{% if new %}New{% else %}Edit{% endif %} poll</h2> {% if error %}<p class='error'>{{ error }}</p>{% endif %} <form action="{{admin_url}}" method="post"> diff --git a/templates/main.html b/templates/main.html index b51e7fe..34f6609 100644 --- a/templates/main.html +++ b/templates/main.html @@ -1,6 +1,7 @@ {% extends "base.html" %} {% block content %} +{% if error %}<p class='error'>{{error}}</p>{%endif%} <h2><a href='edit/0'>Create a poll</a></h2> <p>Create a new sondage for take a decision, find a date for a meeting, etc.</p> |
