diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-03-02 19:12:07 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2014-03-02 19:12:07 +0100 |
commit | 4d8c616b76edfe3bd8862b588e825d1e29d40950 (patch) | |
tree | e2ef8db4d09dddaf2d6e7500575a1ee1fa87d2e1 /ishtar_common/urls.py | |
parent | 8ddbb2568d98e27eba9f601261b9f9717f3e558c (diff) | |
download | Ishtar-4d8c616b76edfe3bd8862b588e825d1e29d40950.tar.bz2 Ishtar-4d8c616b76edfe3bd8862b588e825d1e29d40950.zip |
Specific form for research archaeology (refs #1682)
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 6afd8073d..ab47e82b7 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# Copyright (C) 2010-2013 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> +# Copyright (C) 2010-2014 É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 @@ -71,6 +71,8 @@ urlpatterns += patterns('ishtar_common.views', 'show_person', name='show-person'), url(r'autocomplete-town/?$', 'autocomplete_town', name='autocomplete-town'), + url(r'autocomplete-department/?$', 'autocomplete_department', + name='autocomplete-department'), url(r'new-author/(?P<parent_name>.+)?/$', 'new_author', name='new-author'), url(r'autocomplete-author/$', 'autocomplete_author', |