Added view permission to all data models. Added fixtures autoload.
[e_cidadania.git] / src / apps / ecidadania / debate / url_names.py
blob36c0a72e643fb2f070401d5a38f993e58117f43a
1 # -*- coding: utf-8 -*-
3 # Copyright (c) 2010-2012 Cidadania S. Coop. Galega
5 # This file is part of e-cidadania.
7 # e-cidadania is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # e-cidadania is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with e-cidadania. If not, see <http://www.gnu.org/licenses/>.
20 """
21 Module to store debate related url names.
22 """
24 DEBATE_ADD = 'add-debate'
26 DEBATE_EDIT = 'edit-debate'
28 DEBATE_DELETE = 'delete-debate'
30 DEBATE_LIST = 'list-debates'
32 DEBATE_VIEW = 'view-debate'
34 NOTE_ADD = 'create-note'
36 NOTE_UPDATE = 'update_note'
38 NOTE_UPDATE_POSITION = 'update-note-position'
40 NOTE_DELETE = 'delete-note'