HR milestone 2, application audit log and tracking.

This milestone brings in application auditing, allowing for people to track who modify what applications and provide
acception/rejection reasons as part of the messages sent out to the users.
This commit is contained in:
2010-04-30 19:11:03 +01:00
parent 18fa620aab
commit adb172bf47
12 changed files with 220 additions and 31 deletions

View File

@@ -9,6 +9,9 @@ urlpatterns = patterns('',
(r'^applications/$', views.view_applications),
(r'^applications/(?P<applicationid>\d+)/$', views.view_application),
(r'^applications/(?P<applicationid>\d+)/update/$', views.update_application),
(r'^applications/(?P<applicationid>\d+)/note/$', views.add_note),
(r'^applications/(?P<applicationid>\d+)/reject/$', views.reject_application),
(r'^applications/(?P<applicationid>\d+)/accept/$', views.accept_application),
(r'^add/application/$', views.add_application),
(r'^add/recommendation/$', views.add_recommendation),