mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
Added delete method to all importers Added nonrig importing Venue import optimisation Reran importer for empty DB Reset password appropriately Added view permission to all models where needed. Migrated DB to reflect. Fixed all print buttons on event detail.
31 lines
870 B
Python
31 lines
870 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('RIGS', '0014_auto_20141208_0220'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='event',
|
|
options={'permissions': (('view_event', 'Can view Events'),)},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='organisation',
|
|
options={'permissions': (('view_organisation', 'Can view Organisations'),)},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='person',
|
|
options={'permissions': (('view_person', 'Can view Persons'),)},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='venue',
|
|
options={'permissions': (('view_venue', 'Can view Venues'),)},
|
|
),
|
|
]
|