Skip to content

Commit

Permalink
Merge branch '590-edit-admin-button'
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Mar 8, 2013
2 parents f0925f6 + b485f14 commit 33f90c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ckan/templates/organization/edit_base.html
Expand Up @@ -10,7 +10,7 @@
<li>{% link_for _('Organizations'), controller='organization', action='index' %}</li>
{% block breadcrumb_content_inner %}
<li>{% link_for organization.display_name|truncate(35), controller='organization', action='read', id=organization.name %}</li>
<li class="active">{% link_for _('Edit'), controller='organization', action='edit', id=organization.name %}</li>
<li class="active">{% link_for _('Admin'), controller='organization', action='edit', id=organization.name %}</li>
{% endblock %}
{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion ckan/templates/organization/read_base.html
Expand Up @@ -10,7 +10,7 @@
{% block actions_content %}
{% if h.check_access('organization_update', {'id': c.group_dict.id}) %}
<li>{% link_for _('Add Dataset'), controller='package', action='new', group=c.group_dict.id, class_='btn', icon='plus-sign-alt' %}</li>
<li>{% link_for _('Edit'), controller='organization', action='edit', id=c.group_dict.name, class_='btn btn-primary', icon='wrench' %}</li>
<li>{% link_for _('Admin'), controller='organization', action='edit', id=c.group_dict.name, class_='btn btn-primary', icon='wrench' %}</li>
{% endif %}
<li>{{ h.follow_button('group', c.group_dict.id) }}</li>
{# <li>{% link_for _('History'), controller='organization', action='history', id=c.group_dict.name, class_='btn', icon='undo' %}</li> #}
Expand Down

0 comments on commit 33f90c7

Please sign in to comment.