From 9ff88281dae646a68a8f3515d57108943620da85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=AD=C3=B0ir=20Valberg=20Gu=C3=B0mundsson?= Date: Tue, 12 Mar 2019 11:29:37 +0100 Subject: [PATCH] Change team guide template a bit. --- .../migrations/0051_auto_20190312_1129.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/teams/migrations/0051_auto_20190312_1129.py diff --git a/src/teams/migrations/0051_auto_20190312_1129.py b/src/teams/migrations/0051_auto_20190312_1129.py new file mode 100644 index 00000000..1957c28b --- /dev/null +++ b/src/teams/migrations/0051_auto_20190312_1129.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.5 on 2019-03-12 10:29 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('teams', '0050_team_guide'), + ] + + operations = [ + migrations.AlterField( + model_name='team', + name='guide', + field=models.TextField(blank=True, default='\n## Preparations\n\n...\n\n## Camp setup\n\n...\n\n## During camp\n\n...\n\n## Takedown\n\n...\n\n## Notes for next year\n\n 1. Remember to take notes\n 1. ...\n', help_text='HowTo guide for this year (and next year)', verbose_name='team guide (Markdown)'), + ), + ]