app/soc/views/models/priority_group.py
changeset 2212 4095892a3c99
parent 2208 1bf4e904d5f5
equal deleted inserted replaced
2211:f7497180d037 2212:4095892a3c99
    20 __authors__ = [
    20 __authors__ = [
    21     '"Sverre Rabbelier" <sverre@rabbelier.nl>',
    21     '"Sverre Rabbelier" <sverre@rabbelier.nl>',
    22   ]
    22   ]
    23 
    23 
    24 
    24 
    25 from django import forms
       
    26 
       
    27 from soc.logic import cleaning
       
    28 from soc.logic import dicts
    25 from soc.logic import dicts
    29 from soc.logic.models.priority_group import logic as priority_group_logic
    26 from soc.logic.models.priority_group import logic as priority_group_logic
    30 from soc.views.helper import access
    27 from soc.views.helper import access
    31 from soc.views.helper import decorators
    28 from soc.views.helper import decorators
    32 from soc.views.helper import dynaform
       
    33 from soc.views.helper import widgets
       
    34 from soc.views.models import base
    29 from soc.views.models import base
    35 
    30 
    36 
    31 
    37 class View(base.View):
    32 class View(base.View):
    38   """View methods for the Priority Group model.
    33   """View methods for the Priority Group model.