Initial commit of the HR management code

This commit is contained in:
2010-04-05 02:43:27 +01:00
parent 6b8a4e374d
commit 52a41f4229
14 changed files with 364 additions and 11 deletions

14
hr/urls.py Normal file
View File

@@ -0,0 +1,14 @@
from django.conf.urls.defaults import *
from hr import views
urlpatterns = patterns('',
('^$', views.index),
(r'^recommendations/$', views.view_recommendations),
(r'^recommendations/(?P<recommendationid>.*)/$', views.view_recommendation),
(r'^applications/$', views.view_applications),
(r'^applications/(?P<applicationid>.*)/$', views.view_application),
(r'^add/application/$', views.add_application),
(r'^add/recommendation/$', views.add_recommendation),
)