Added view, doesn't yet submit

This commit is contained in:
David Taylor
2015-08-05 22:08:00 +03:00
committed by Tom Price
parent f99e16f562
commit 7a0746d1a4
12 changed files with 1165 additions and 6 deletions

View File

@@ -49,11 +49,11 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='schema',
name='schema_type',
field=models.ForeignKey(related_name='schemas', to='forms.Type'),
field=models.ForeignKey(related_name='schemas', to='rigForms.Type'),
),
migrations.AddField(
model_name='form',
name='schema',
field=models.ForeignKey(related_name='forms', to='forms.Schema'),
field=models.ForeignKey(related_name='forms', to='rigForms.Schema'),
),
]