OpenSlides/openslides/agenda/forms.py

42 lines
1.2 KiB
Python
Raw Normal View History

2011-07-31 10:46:29 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.agenda.forms
~~~~~~~~~~~~~~~~~~~~~~~
Forms for the agenda app.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from django.forms import Form, ModelForm, IntegerField, ChoiceField, \
ModelChoiceField, HiddenInput, Select
from django.utils.translation import ugettext as _
2012-02-06 22:22:16 +01:00
from openslides.agenda.models import Item
2011-07-31 10:46:29 +02:00
class ItemFormText(ModelForm):
error_css_class = 'error'
required_css_class = 'required'
2012-02-09 02:29:38 +01:00
items = Item.objects.all().filter(parent=None)
parent = ModelChoiceField(queryset=items, label=_("Parent item"), required=False)
2011-07-31 10:46:29 +02:00
class Meta:
2012-02-06 22:22:16 +01:00
model = Item
2011-09-03 14:30:56 +02:00
exclude = ('closed', 'weight')
2011-07-31 10:46:29 +02:00
def genweightchoices():
l = []
for i in range(-50, 51):
l.append(('%d' % i, i))
return l
2012-02-06 22:22:16 +01:00
class ItemOrderForm(Form):
2012-02-09 02:29:38 +01:00
weight = ChoiceField(choices=genweightchoices(),
2011-07-31 10:46:29 +02:00
widget=Select(attrs={'class': 'menu-weight'}),
label="")
self = IntegerField(widget=HiddenInput(attrs={'class': 'menu-mlid'}))
parent = IntegerField(widget=HiddenInput(attrs={'class': 'menu-plid'}))