diff --git a/allianceauth/authentication/urls.py b/allianceauth/authentication/urls.py index 962483fe..11fee0b9 100644 --- a/allianceauth/authentication/urls.py +++ b/allianceauth/authentication/urls.py @@ -22,13 +22,6 @@ urlpatterns = [ r'^account/characters/add/$', views.add_character, name='add_character' - ), - url( - r'^help/$', - login_required( - TemplateView.as_view(template_name='allianceauth/help.html') - ), - name='help' - ), + ), url(r'^dashboard/$', views.dashboard, name='dashboard'), ] diff --git a/allianceauth/templates/allianceauth/help.html b/allianceauth/templates/allianceauth/help.html deleted file mode 100644 index 4056dd0d..00000000 --- a/allianceauth/templates/allianceauth/help.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends "allianceauth/base.html" %} -{% load i18n %} - -{% block page_title %}{% trans "Help" %}{% endblock page_title %} - -{% block content %} -
- -

{% trans "Help" %}

- -
-
- -
-
-
-{% endblock content %} - diff --git a/allianceauth/templates/allianceauth/side-menu.html b/allianceauth/templates/allianceauth/side-menu.html index 65270d33..bef3d097 100644 --- a/allianceauth/templates/allianceauth/side-menu.html +++ b/allianceauth/templates/allianceauth/side-menu.html @@ -26,15 +26,7 @@ {% endif %} {% menu_items %} - - {% if user.is_superuser %} -
  • - - {% trans "Help" %} - -
  • - {% endif %} + diff --git a/allianceauth/templates/allianceauth/top-menu.html b/allianceauth/templates/allianceauth/top-menu.html index f88bc320..ab491d52 100644 --- a/allianceauth/templates/allianceauth/top-menu.html +++ b/allianceauth/templates/allianceauth/top-menu.html @@ -39,6 +39,13 @@ {% else %}
  • {% trans "Login" %}
  • {% endif %} + {% if user.is_superuser %} +
  • + + + +
  • + {% endif %}