.
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
# Generated by Django 3.2.8 on 2021-11-30 18:07
|
||||
|
||||
import atlas.models
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('atlas', '0010_auto_20211129_2214'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='condition',
|
||||
name='name',
|
||||
field=models.CharField(max_length=255, unique=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='finding',
|
||||
name='name',
|
||||
field=models.CharField(max_length=255, unique=True),
|
||||
),
|
||||
migrations.CreateModel(
|
||||
name='Structure',
|
||||
fields=[
|
||||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('structure', models.CharField(max_length=255, unique=True)),
|
||||
('primary_name', models.BooleanField(default='True')),
|
||||
('synonym', models.ManyToManyField(blank=True, related_name='_atlas_structure_synonym_+', to='atlas.Structure')),
|
||||
],
|
||||
bases=(atlas.models.SynMixin, models.Model),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='seriesfinding',
|
||||
name='structures',
|
||||
field=models.ManyToManyField(blank=True, to='atlas.Structure'),
|
||||
),
|
||||
]
|
||||
+17
-14
@@ -774,26 +774,29 @@ input {
|
||||
border-color: #05668d;
|
||||
}
|
||||
|
||||
.select2-selection {
|
||||
.select2-selection,
|
||||
.select2-selection--single {
|
||||
background-color: #05668d;
|
||||
color: white;
|
||||
/* border: 1px solid #aaa; */
|
||||
border-radius: 0px;
|
||||
color: white;
|
||||
/* border: 1px solid #aaa; */
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
.select2-search__field {
|
||||
background-color: #05668d;
|
||||
color: darkblue;
|
||||
border: 1px solid black;
|
||||
color: darkblue;
|
||||
border: 1px solid black;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.temp-thumb-large {
|
||||
width: 1000px;
|
||||
height: 1000px;
|
||||
max-width: 1000px;
|
||||
}
|
||||
|
||||
.image-duplicate {
|
||||
|
||||
.temp-thumb-large {
|
||||
width: 1000px;
|
||||
height: 1000px;
|
||||
max-width: 1000px;
|
||||
}
|
||||
|
||||
.image-duplicate {
|
||||
border: 2px solid orange;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user