Skip to content

Commit

Permalink
fix: translate titles
Browse files Browse the repository at this point in the history
  • Loading branch information
greatislander committed Jun 29, 2020
1 parent 4785268 commit c15a253
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h1>{% trans 'Create a profile: individual' %}</h1>
{% if form.errors %}
{% include 'maps/profiles/errors.html' %}
{% endif %}
<h2>{% 'More about you' %}</h2>
<h2>{% trans 'More about you' %}</h2>
{{ wizard.management_form }}
{% csrf_token %}
{% if wizard.form.forms %}
Expand Down
2 changes: 1 addition & 1 deletion maps/templates/maps/profiles/individual/roles.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h1>{% trans 'Create a profile: individual' %}</h1>
{% if form.errors %}
{% include 'maps/profiles/errors.html' %}
{% endif %}
<h2>{% 'Describe your role' %}</h2>
<h2>{% trans 'Describe your role' %}</h2>
{{ wizard.management_form }}
{% csrf_token %}
{% if wizard.form.forms %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h1>{% trans 'Create a profile: individual' %}</h1>
{% if form.errors %}
{% include 'maps/profiles/errors.html' %}
{% endif %}
<h2>{% 'Social media' %}</h2>
<h2>{% trans 'Social media' %}</h2>
{{ wizard.management_form }}
{% csrf_token %}
{% if wizard.form.forms %}
Expand Down

0 comments on commit c15a253

Please sign in to comment.