summaryrefslogtreecommitdiff
path: root/archaeological_files/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2013-12-02 14:51:09 +0100
committerÉtienne Loks <etienne.loks@peacefrogs.net>2013-12-02 14:59:06 +0100
commit6dfc238b654c17e2d95a8eff8ac0262498535214 (patch)
treee7c44902b0dc74675ae3dda5658fc29c14ec71ba /archaeological_files/urls.py
parent5f12ca50e8273f0215fa0a0a92735ff8c4dd6a84 (diff)
downloadIshtar-6dfc238b654c17e2d95a8eff8ac0262498535214.tar.bz2
Ishtar-6dfc238b654c17e2d95a8eff8ac0262498535214.zip
Manage document template
* ooo_replace: generate a document by mapping ooo variables with a given dict * DocumentTemplate model: store templates associated with a type of objects * get_values method: generate a dict of value from a model * new form/view to generate document from administrativ acts
Diffstat (limited to 'archaeological_files/urls.py')
-rw-r--r--archaeological_files/urls.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/archaeological_files/urls.py b/archaeological_files/urls.py
index 72a6e2df7..9d1f4f56f 100644
--- a/archaeological_files/urls.py
+++ b/archaeological_files/urls.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-# Copyright (C) 2010-2012 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
+# Copyright (C) 2010-2013 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@@ -59,5 +59,8 @@ urlpatterns += patterns('archaeological_files.views',
'show_file', name='show-historized-file'),
url(r'revert-file/(?P<pk>.+)/(?P<date>.+)$',
'revert_file', name='revert-file'),
- url(r'dashboard_file/$', 'dashboard_file', name='dashboard-file')
+ url(r'dashboard_file/$', 'dashboard_file', name='dashboard-file'),
+ url(r'file_administrativeact_document/$',
+ 'file_administrativeactfile_document',
+ name='administrativeact_document'),
)