Added config field for legal notes.
This commit is contained in:
parent
96328f033b
commit
d7e39be708
@ -38,6 +38,7 @@ Other:
|
||||
for generic Django REST Framework views in OpenSlides apps.
|
||||
- Removed most of the Django views and templates.
|
||||
- Removed Django error pages.
|
||||
- Added page for legal notes.
|
||||
- Refactored projector API using metaclasses now.
|
||||
- Renamed SignalConnectMetaClass classmethod get_all_objects to get_all
|
||||
(private API).
|
||||
|
@ -6,6 +6,7 @@ from .models import ConfigStore
|
||||
|
||||
INPUT_TYPE_MAPPING = {
|
||||
'string': str,
|
||||
'text': str,
|
||||
'integer': int,
|
||||
'boolean': bool,
|
||||
'choice': str}
|
||||
|
@ -55,7 +55,6 @@ def setup_general_config(sender, **kwargs):
|
||||
group=ugettext_lazy('General'),
|
||||
subgroup=ugettext_lazy('Event'))
|
||||
|
||||
# TODO: Check whether this variable is ever used.
|
||||
yield ConfigVariable(
|
||||
name='general_event_organizer',
|
||||
default_value='',
|
||||
@ -64,6 +63,15 @@ def setup_general_config(sender, **kwargs):
|
||||
group=ugettext_lazy('General'),
|
||||
subgroup=ugettext_lazy('Event'))
|
||||
|
||||
yield ConfigVariable(
|
||||
name='general_event_legal_notes',
|
||||
default_value='',
|
||||
input_type='text',
|
||||
label=ugettext_lazy('Legal notes'),
|
||||
weight=132,
|
||||
group=ugettext_lazy('General'),
|
||||
subgroup=ugettext_lazy('Event'))
|
||||
|
||||
# General System
|
||||
|
||||
yield ConfigVariable(
|
||||
|
@ -321,6 +321,7 @@ angular.module('OpenSlidesApp.core.site', [
|
||||
function getHtmlType(type) {
|
||||
return {
|
||||
string: 'text',
|
||||
text: 'textarea',
|
||||
integer: 'number',
|
||||
boolean: 'checkbox',
|
||||
choice: 'choice',
|
||||
|
@ -2,8 +2,10 @@
|
||||
<label>{{ label }}</label>
|
||||
|
||||
<div class="input-group">
|
||||
<input ng-if="type != 'choice'" ng-model="value" ng-change="save(configOption.key, value)" id="{{ key }}" type="{{ type }}"
|
||||
class="form-control">
|
||||
<input ng-if="type != 'choice' && type != 'textarea'" ng-model="value" ng-change="save(configOption.key, value)" id="{{ key }}"
|
||||
type="{{ type }}" class="form-control">
|
||||
|
||||
<textarea ng-if="type == 'textarea'" ng-model="value" ng-change="save(configOption.key, value)" id="{{ key }}" class="form-control">
|
||||
|
||||
<select ng-if="type == 'choice'" ng-model="value" ng-change="save(configOption.key, value)" id="{{ key }}"
|
||||
class="form-control" ng-options="option.value as option.display_name for option in choices">
|
||||
|
@ -1,12 +1,16 @@
|
||||
<div class="header">
|
||||
<div class="title">
|
||||
<h1 translate>Version</h1>
|
||||
<h1 translate>Legal Notes and Version</h1>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="details">
|
||||
<p class="lead">OpenSlides {{ core_version }}
|
||||
<p class="lead" translate>Legal Notes</p>
|
||||
{{ config('general_event_legal_notes') }}
|
||||
</div>
|
||||
|
||||
<div class="details">
|
||||
<p class="lead">OpenSlides {{ core_version }}
|
||||
<div ng-show="plugins.length">
|
||||
<p translate>Installed plugins:</p>
|
||||
<ol>
|
||||
|
Loading…
Reference in New Issue
Block a user