Replaced exclusive ifs by if-else

This commit is contained in:
Alejandro Celaya 2016-07-28 09:56:44 +02:00
parent af9193f721
commit f4532c3015

View File

@ -14,8 +14,7 @@
<hr>
{% if status != 404 %}
<p>{{ translate('We encountered a %s %s error.') | format(status, reason) }}</p>
{% endif %}
{% if status == 404 %}
{% else %}
<p>{{ translate('This short URL doesn\'t seem to be valid.') }}</p>
<p>{{ translate('Make sure you included all the characters, with no extra punctuation.') }}</p>
{% endif %}