d9c08b65b7
With new amendment list table: - Removed title from table, leadmotion can be selected now - rename the new list, added the export dialog, multiselect actions and supporter badge in the amendment list view - Moved collission detection to own factory, compute collissions in the amendment list view - Delegates can now enter paragraph based amendments - new amendment list as pdf/csv export - improved caching of amendments - Parse styles in headings and removed all double-quotes - Performance improvements: * Removed ng-mouseover/mouseleave actions in amendment-list * disable collission detection in amendment list view. * Improved state/recommendation dropdown in amendment list.
22 lines
489 B
Python
22 lines
489 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.5 on 2018-03-07 10:46
|
|
from __future__ import unicode_literals
|
|
|
|
import jsonfield.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('motions', '0006_submitter_model'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='motionversion',
|
|
name='amendment_paragraphs',
|
|
field=jsonfield.fields.JSONField(null=True),
|
|
),
|
|
]
|