Skip to content

Commit

Permalink
Added parenthesis in organization/member_new, line59
Browse files Browse the repository at this point in the history
  • Loading branch information
smotornyuk committed Dec 5, 2016
1 parent 4537b1d commit 984f222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckan/templates/organization/member_new.html
Expand Up @@ -56,15 +56,15 @@ <h1 class="page-heading">
{{ form.select('role', label=_('Role'), options=c.roles, selected=c.user_role, error='', attrs=format_attrs) }}
<div class="form-actions">
{% if user %}
<a href="{% url_for controller='organization', action='member_delete', id=c.group_dict.id, user=user.id %}" class="btn btn-danger pull-left" data-module="confirm-action" data-module-content="{{ _('Are you sure you want to delete this member?' }}">{{ _('Delete') }}</a>
<a href="{% url_for controller='organization', action='member_delete', id=c.group_dict.id, user=user.id %}" class="btn btn-danger pull-left" data-module="confirm-action" data-module-content="{{ _('Are you sure you want to delete this member?') }}">{{ _('Delete') }}</a>
<button class="btn btn-primary" type="submit" name="submit" >
{{ _('Update Member') }}
</button>
{% else %}
<button class="btn btn-primary" type="submit" name="submit" >
{{ _('Add Member') }}
</button>
{% endif %}
{% endif %}
</div>
</form>
{% endblock %}
Expand Down

0 comments on commit 984f222

Please sign in to comment.