diff options
author | luxagraf <sng@luxagraf.net> | 2022-02-14 21:15:36 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2022-02-14 21:15:36 -0500 |
commit | 337a458c4d2e06ce611fff60cb592df3bb96f88e (patch) | |
tree | 1859218a3b2fa0e18d5a10721feb7ea56f16ee4b /app/lttr | |
parent | b8f2cbf930eabeb055099fc9080ef55a63e3ab40 (diff) |
lib: got rid of all ifequal in templates
Diffstat (limited to 'app/lttr')
-rw-r--r-- | app/lttr/templates/lttr/postcard_subscribe.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lttr/templates/lttr/postcard_subscribe.html b/app/lttr/templates/lttr/postcard_subscribe.html index 7f96503..17d1564 100644 --- a/app/lttr/templates/lttr/postcard_subscribe.html +++ b/app/lttr/templates/lttr/postcard_subscribe.html @@ -19,7 +19,7 @@ html { overflow: hidden;} {% for field in form %} <fieldset> {{field.label_tag}} - {%ifequal field.name "address"%}<div class="textarea-rounded">{{ field }}</div>{%else%}{{field}}{%endifequal%} + {%if field.name == "address"%}<div class="textarea-rounded">{{ field }}</div>{%else%}{{field}}{%endif%} </fieldset> {% if forloop.last %}<input type="submit" name="post" class="btn" value="Send Me A Postcard" />{%endif%} <small class="alert">{% if field.errors %}{{field.errors}}{% endif %}</small> |