Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

Commit

Permalink
Merge pull request #816 from jpotts/fix_971828
Browse files Browse the repository at this point in the history
[Fix bug 971828] Remove "curated" from add/edit, read group templates
  • Loading branch information
dpoirier committed Feb 14, 2014
2 parents 4ba2b83 + 796c60c commit d4aa3ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 2 additions & 6 deletions mozillians/templates/groups/add_edit.html
@@ -1,11 +1,9 @@
{% extends 'base.html' %}
{% block page_title %}
{% if creating %}
{{ _('Add a curated group') }}
{{ _('Add a group') }}
{% elif group.functional_area %}
{{ _('Edit functional area') }}
{% elif group.curator %}
{{ _('Edit curated group') }}
{% else %}
{{ _('Edit group') }}
{% endif %}
Expand All @@ -21,7 +19,7 @@

<header>
{% if creating %}
<h1>{{ _('Add a curated group') }}</h1>
<h1>{{ _('Add a group') }}</h1>
<p>
{% trans %}
Use this form to create a group on Mozillians.org. Before creating a group,
Expand All @@ -37,8 +35,6 @@ <h1>{{ _('Add a curated group') }}</h1>
</p>
{% elif group.functional_area %}
<h1>{{ _('Edit functional area') }}</h1>
{% elif group.curator %}
<h1>{{ _('Edit curated group') }}</h1>
{% else %}
<h1>{{ _('Edit group') }}</h1>
{% endif %}
Expand Down
2 changes: 0 additions & 2 deletions mozillians/templates/groups/group.html
Expand Up @@ -14,8 +14,6 @@
<h1>
{% if group.functional_area %}
{{ _('Functional Area') }}:
{% elif group.curator %}
{{ _('Curated Group') }}:
{% else %}
{{ _('Group') }}:
{% endif %}
Expand Down

0 comments on commit d4aa3ea

Please sign in to comment.