mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 17:47:08 +03:00
Fix automated conversion hiccup
This commit is contained in:
parent
a023333499
commit
4c334c07b5
|
@ -1,6 +1,7 @@
|
||||||
{% raw %}{% extends "account/base.html" %}
|
{% raw %}{% extends "account/base.html" %}
|
||||||
|
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
|
{% load crispy_forms_tags %}
|
||||||
|
|
||||||
{% block head_title %}{% trans "Account" %}{% endblock %}
|
{% block head_title %}{% trans "Account" %}{% endblock %}
|
||||||
|
|
||||||
|
@ -49,7 +50,7 @@
|
||||||
|
|
||||||
<form method="post" action="{% url 'account_email' %}" class="add_email">
|
<form method="post" action="{% url 'account_email' %}" class="add_email">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{{ form.as_p}}
|
{{ form|crispy }}
|
||||||
<button class="btn btn-primary" name="action_add" type="submit">{% trans "Add E-mail" %}</button>
|
<button class="btn btn-primary" name="action_add" type="submit">{% trans "Add E-mail" %}</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user