Added srp program features, updated hr applications to support adding a "mark in progress"

This commit is contained in:
Raynaldo Rivera
2014-11-26 22:09:57 -07:00
parent eb723254f2
commit cce15d1667
19 changed files with 516 additions and 47 deletions

View File

@@ -53,6 +53,7 @@ INSTALLED_APPS = (
'groupmanagement',
'hrapplications',
'timerboard',
'srp',
)
MIDDLEWARE_CLASSES = (

View File

@@ -81,6 +81,9 @@ urlpatterns = patterns('',
name="auth_hrapplication_reject"),
url(r'hr_application_search/', 'hrapplications.views.hr_application_search',
name="auth_hrapplication_search"),
url(r'hr_mark_in_progress/(\w+)', 'hrapplications.views.hr_application_mark_in_progress',
name="auth_hrapplication_mark_in_progress"),
# Service Urls
url(r'^services/', 'services.views.services_view', name='auth_services'),
@@ -130,4 +133,13 @@ urlpatterns = patterns('',
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'),
# SRP URLS
url(r'^srp/$', 'srp.views.srp_management', name='auth_srp_management_view'),
url(r'^srp_fleet_view/(\w+)$', 'srp.views.srp_fleet_view', name='auth_srp_fleet_view'),
url(r'^srp_fleet_add_view/$', 'srp.views.srp_fleet_add_view', name='auth_srp_fleet_add_view'),
url(r'^srp_fleet_remove/(\w+)$', 'srp.views.srp_fleet_remove', name='auth_srp_flet_remove'),
url(r'^srp_request/(\w+)', 'srp.views.srp_request_view', name='auth_srp_request_view'),
url(r'^srp_request_remove/(\w+)', 'srp.views.srp_request_remove',
name="auth_srp_request_remove"),
)