Added timerboard feature

This commit is contained in:
Raynaldo Rivera
2014-11-16 01:10:41 -07:00
parent 1ca376f71b
commit d1244a97e3
18 changed files with 5160 additions and 31 deletions

View File

@@ -52,6 +52,7 @@ INSTALLED_APPS = (
'eveonline',
'groupmanagement',
'hrapplications',
'timerboard',
)
MIDDLEWARE_CLASSES = (

6
alliance_auth/urls.py Normal file → Executable file
View File

@@ -123,4 +123,8 @@ urlpatterns = patterns('',
url(r'^tool/fleet_formatter_tool/$', 'services.views.fleet_formatter_view',
name='auth_fleet_format_tool_view'),
)
# Timer URLS
url(r'^timers/$', 'timerboard.views.timer_view', name='auth_timer_view'),
url(r'^add_timer/$', 'timerboard.views.add_timer_view', name='auth_add_timer_view'),
url(r'^remove_timer/(\w+)', 'timerboard.views.remove_timer', name='auth_remove_timer'),
)