projets
/
auf_rh_dae.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Premier jet pour le formulaire de poste (manque le financement)
[auf_rh_dae.git]
/
project
/
dae
/
urls.py
1
# -*- encoding: utf-8 -*
2
from
django
.
conf
.
urls
.
defaults
import
patterns
,
url
3
4
urlpatterns
=
patterns
(
5
'project.dae.views'
,
6
(
r
'^$'
,
'index'
),
7
url
(
r
'^poste$'
,
'poste'
,
name
=
'poste'
),
8
url
(
r
'^poste/(?P<id>.*)$'
,
'poste'
,
name
=
'poste'
),
9
)