21ff62dd32
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.
13 lines
250 B
Python
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)
|