Move templates and fix namespacing

Move base template

    Refactor services urls and templates

    Refactor groupmanagement urls and templates

    Refactor notifications urls and templates
This commit is contained in:
Basraah
2017-09-23 06:48:51 +10:00
parent b130cc6c8e
commit 7beec38881
110 changed files with 468 additions and 457 deletions

View File

@@ -1,4 +1,4 @@
{% extends 'registered/base.html' %}
{% extends 'allianceauth/base.html' %}
{% load i18n %}
{% block title %}Fleet Participation{% endblock %}
{% block page_title %}{% trans "Fleet Participation" %}{% endblock %}

View File

@@ -1,4 +1,4 @@
{% extends "registered/base.html" %}
{% extends "allianceauth/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends "registered/base.html" %}
{% extends "allianceauth/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends "registered/base.html" %}
{% extends "allianceauth/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends "registered/base.html" %}
{% extends "allianceauth/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends "registered/base.html" %}
{% extends "allianceauth/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends "registered/base.html" %}
{% extends "allianceauth/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% load i18n %}

View File

@@ -1,4 +1,4 @@
{% extends "registered/base.html" %}
{% extends "allianceauth/base.html" %}
{% load bootstrap %}
{% load staticfiles %}
{% load i18n %}

View File

@@ -1,6 +1,7 @@
from django.conf.urls import url
from . import views
app_name = 'fleetactivitytracking'
urlpatterns = [
# FleetActivityTracking (FAT)
@@ -30,4 +31,4 @@ urlpatterns = [
url(r'^link/$', views.fatlink_view, name='click_fatlink'),
url(r'^link/(?P<hash>[a-zA-Z0-9]+)/(?P<fatname>[a-z0-9_-]+)/$',
views.click_fatlink_view),
]
]