Merged from rcross: Add Introduction header to proceedings. Add Acknowlegements to the meeting model. Add a view for acknowlegements.
- Legacy-Id: 11804
Note: SVN reference [11770] has been migrated to Git commit 0b196e5eb5
21 lines
556 B
Python
21 lines
556 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('meeting', '0032_reconstruct_bluesheet_docs_95through96'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='meeting',
|
|
name='acknowledgements',
|
|
field=models.TextField(help_text=b'Acknowledgements for use in meeting proceedings. Use ReStructuredText markup.', blank=True),
|
|
preserve_default=True,
|
|
),
|
|
]
|