mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 03:17:07 +00:00
feat: add configurable help text to questions
This commit is contained in:
53
people/migrations/0045_question_help_text.py
Normal file
53
people/migrations/0045_question_help_text.py
Normal file
@@ -0,0 +1,53 @@
|
||||
# Generated by Django 2.2.10 on 2021-03-10 09:46
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('people', '0044_themes_to_admin_question'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='organisationquestion',
|
||||
name='help_text',
|
||||
field=models.CharField(blank=True, help_text='Additional hint text to be displayed with the question', max_length=255),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='organisationrelationshipquestion',
|
||||
name='help_text',
|
||||
field=models.CharField(blank=True, help_text='Additional hint text to be displayed with the question', max_length=255),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='personquestion',
|
||||
name='help_text',
|
||||
field=models.CharField(blank=True, help_text='Additional hint text to be displayed with the question', max_length=255),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='relationshipquestion',
|
||||
name='help_text',
|
||||
field=models.CharField(blank=True, help_text='Additional hint text to be displayed with the question', max_length=255),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organisationquestion',
|
||||
name='filter_text',
|
||||
field=models.CharField(blank=True, help_text='Alternative text to be displayed in network filters - 3rd person', max_length=255),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='organisationrelationshipquestion',
|
||||
name='filter_text',
|
||||
field=models.CharField(blank=True, help_text='Alternative text to be displayed in network filters - 3rd person', max_length=255),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='personquestion',
|
||||
name='filter_text',
|
||||
field=models.CharField(blank=True, help_text='Alternative text to be displayed in network filters - 3rd person', max_length=255),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='relationshipquestion',
|
||||
name='filter_text',
|
||||
field=models.CharField(blank=True, help_text='Alternative text to be displayed in network filters - 3rd person', max_length=255),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user