OpenSlides/openslides/core/forms.py
Norman Jäckel 21ff62dd32 Changes in projector and core app and in utils.
Changed api for main menu entries.
Enhanced http error pages using a classed based views.
Moved dashboard and select widgets view from projector to core app.
Also some small clean ups.
2014-01-10 16:17:54 +01:00

13 lines
250 B
Python

# -*- coding: utf-8 -*-
from django import forms
from openslides.utils.forms import CssClassMixin
class SelectWidgetsForm(CssClassMixin, forms.Form):
"""
Form to select the widgets.
"""
widget = forms.BooleanField(required=False)