diff --git a/atlas/templates/atlas/collection_mark_question.html b/atlas/templates/atlas/collection_mark_question.html
index 31d07641..d3ba15be 100644
--- a/atlas/templates/atlas/collection_mark_question.html
+++ b/atlas/templates/atlas/collection_mark_question.html
@@ -45,7 +45,7 @@
{% endfor %}
-
+
diff --git a/rapids/forms.py b/rapids/forms.py
index 0f01c53e..b7898883 100755
--- a/rapids/forms.py
+++ b/rapids/forms.py
@@ -174,6 +174,7 @@ class RapidForm(ModelForm):
"examination",
# "site",
"feedback",
+ "history",
"open_access",
]
# fields = ['question', 'feedback', 'subspecialty', 'references']
diff --git a/rapids/migrations/0044_rapid_history.py b/rapids/migrations/0044_rapid_history.py
new file mode 100644
index 00000000..4f6bcb48
--- /dev/null
+++ b/rapids/migrations/0044_rapid_history.py
@@ -0,0 +1,18 @@
+# Generated by Django 3.2.10 on 2022-04-04 21:47
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('rapids', '0043_exam_user_scores'),
+ ]
+
+ operations = [
+ migrations.AddField(
+ model_name='rapid',
+ name='history',
+ field=models.TextField(blank=True, null=True),
+ ),
+ ]
diff --git a/rapids/models.py b/rapids/models.py
index a284b680..8933dd07 100644
--- a/rapids/models.py
+++ b/rapids/models.py
@@ -126,6 +126,7 @@ class Rapid(models.Model):
# author = models.ForeignKey('auth.User', on_delete=models.CASCADE)
# image = models.ImageField()
question = models.TextField(null=True, blank=True)
+ history = models.TextField(null=True, blank=True)
feedback = models.TextField(null=True, blank=True)
normal = models.BooleanField(default=False, help_text="Tick if true")