mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 23:02:19 +00:00
Initial commit of the HR management code
This commit is contained in:
14
hr/urls.py
Normal file
14
hr/urls.py
Normal 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),
|
||||
)
|
||||
Reference in New Issue
Block a user