Skip to content

Commit

Permalink
Change title in Admin settings page
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksandar Jovanov committed Nov 8, 2019
1 parent cd4ee5e commit 51e787b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ckanext/visualize/templates/admin/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

{% block content_primary_nav %}
{{ super() }}
{{ h.build_nav_icon('ckanadmin_visualize_data', _('Visualize data')) }}
{{ h.build_nav_icon('ckanadmin_visualize_data', _('Visualize')) }}
{% endblock %}
2 changes: 1 addition & 1 deletion ckanext/visualize/templates/admin/visualize_data.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<div class="module module-narrow module-shallow">
<h2 class="module-heading">
<i class="fa fa-info-circle"></i>
{{ _('Visualize data options') }}
{{ _('Visualize options') }}
</h2>
<div class="module-content">
{% block admin_form_help %}
Expand Down
2 changes: 1 addition & 1 deletion ckanext/visualize/tests/test_controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,4 @@ def test_visualize_data_endpoint(self):
route = url_for(controller=controller, action=action)
response = app.get(url=route, extra_environ=env)

assert 'Visualize data' in response.body
assert 'Visualize' in response.body

0 comments on commit 51e787b

Please sign in to comment.