.
This commit is contained in:
@@ -430,6 +430,7 @@ td.user-answer-score-2::after {
|
|||||||
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
|
||||||
background: rgb(28, 184, 65);
|
background: rgb(28, 184, 65);
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
.add-popup {
|
.add-popup {
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
# Generated by Django 3.1.3 on 2021-01-21 18:09
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('rapids', '0005_auto_20210121_1806'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='rapid',
|
||||||
|
name='examination',
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='rapid',
|
||||||
|
name='examination',
|
||||||
|
field=models.ManyToManyField(help_text='Name of the (primary) examination', to='rapids.Examination'),
|
||||||
|
),
|
||||||
|
]
|
||||||
+2
-2
@@ -142,8 +142,8 @@ class Rapid(models.Model):
|
|||||||
Region,
|
Region,
|
||||||
blank=True,
|
blank=True,
|
||||||
help_text="Region of the abnormality (laterality independent)")
|
help_text="Region of the abnormality (laterality independent)")
|
||||||
examination = models.ForeignKey(
|
examination = models.ManyToManyField(
|
||||||
Examination, help_text="Name of the (primary) examination", on_delete=models.SET_NULL, null=True)
|
Examination, help_text="Name of the (primary) examination")
|
||||||
laterality = models.CharField(
|
laterality = models.CharField(
|
||||||
max_length=20,
|
max_length=20,
|
||||||
choices=LATERALITY_CHOICES,
|
choices=LATERALITY_CHOICES,
|
||||||
|
|||||||
Reference in New Issue
Block a user