Skip to content

Commit

Permalink
Fix nofications typo in sidebar
Browse files Browse the repository at this point in the history
Test Plan: vima.staging

Reviewers: #servers, jpr

Reviewed By: jpr

Subscribers: #servers

Differential Revision: https://phab.noc.grnet.gr/D4912
  • Loading branch information
hpanago committed Aug 27, 2018
1 parent 63fabd1 commit 89c0d97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions locale/el/LC_MESSAGES/django.po
Original file line number Diff line number Diff line change
Expand Up @@ -836,10 +836,6 @@ msgstr "Έξοδος"
msgid "Applications"
msgstr "Αιτήσεις"

#: templates/base.html:187
msgid "Nofications"
msgstr "Ειδοποιήσεις"

#: templates/base.html:188 templates/clusters/clusters.html:10
#: templates/clusters/clusters.html:41
msgid "Cluster Info"
Expand Down Expand Up @@ -1415,6 +1411,7 @@ msgstr "εργασίες"
#: templates/notifications/create.html:11
#: templates/notifications/detail.html:6
#: templates/notifications/detail.html:13
#: templates/base.html:187
msgid "Notifications"
msgstr "Ειδοποιήσεις"

Expand Down
2 changes: 1 addition & 1 deletion notifications/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def login_superuser(self):
return self.client.login(username=self.superuser_username, password=self.superuser_password)


class NoficationsTestCase(LoginTestCase):
class NotificationsTestCase(LoginTestCase):

def setUp(self):
self.client = Client()
Expand Down
2 changes: 1 addition & 1 deletion templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
<ul id="dashboard-menu" class="nav nav-list">
<li {% block homepage %}{% endblock %}><a href="{% url 'user-instances' %}"><i class="fa fa-home"></i> <span>{% trans "Home" %}</span></a></li>
{% if user.is_superuser or perms.ganeti.view_instances %}
<li {% block notify %}{% endblock %}><a href="{% url 'notify' %}"><i class="fa fa-envelope"></i> <span>{% trans "Nofications" %}</span></a></li>
<li {% block notify %}{% endblock %}><a href="{% url 'notify' %}"><i class="fa fa-envelope"></i> <span>{% trans "Notifications" %}</span></a></li>
<li {% block clusterinfo %}{% endblock %}><a href="{% url 'clusterdetails' %}"><i class="fa fa-puzzle-piece"></i> <span>{% trans "Cluster Info" %}</span></a></li>
<li {% block clusternodes %}{% endblock %}><a href="{% url 'cluster-nodes' %}"><i class="fa fa-tasks"></i> <span>{% trans "Nodes" %}</span></a></li>
<li {% block clusterjobs %}{% endblock %}><a href="{% url 'jobs' %}"><i class="fa fa-coffee"></i> <span>{% trans "Jobs" %}</span></a></li>
Expand Down

0 comments on commit 89c0d97

Please sign in to comment.