ed72a90306
motion detail: - added progres bar for motionpoll - added support/unsupport function - show log motion list: - added state filter - added css animations for enter/leave motion form: - use angular-formly (instead of old ng-fab-forms with no angular 1.4.x support) general: - Workflow states use new field 'css_class' (instead of unused 'icon'). Added migration file. - added 'allowed_actions' to rest api for each motion (by Norman) - updated all JavaScript dependencies (bower.json)
30 lines
748 B
Python
30 lines
748 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('motions', '0003_auto_20150904_2029'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='state',
|
|
old_name='icon',
|
|
new_name='css_class',
|
|
),
|
|
migrations.AlterField(
|
|
model_name='state',
|
|
name='css_class',
|
|
field=models.CharField(max_length=255, default='primary'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='state',
|
|
name='workflow',
|
|
field=models.ForeignKey(to='motions.Workflow', related_name='states'),
|
|
),
|
|
]
|