Improvements to user management
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 3.2.13 on 2022-11-14 09:44
|
||||
|
||||
import anatomy.models
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('anatomy', '0066_remove_exam_stats_graph'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='anatomyquestion',
|
||||
name='image',
|
||||
field=models.ImageField(help_text="The image to use for the question. Ideally use use unmarked images and annotate (arrow) them on the test system. If you wish to reuse an image that is already uploaded 'clone' the question that contains it.", upload_to=anatomy.models.image_directory_path),
|
||||
),
|
||||
]
|
||||
@@ -858,4 +858,16 @@ details.filter {
|
||||
border: 1px solid gray;
|
||||
padding: 10px;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
/* Generic default styling for forms */
|
||||
|
||||
/* Highlight form errors */
|
||||
tr:has(.errorlist){
|
||||
border: 1px dashed red;
|
||||
}
|
||||
|
||||
.errorlist + input {
|
||||
background-color: red;
|
||||
color: darkblue;
|
||||
}
|
||||
Reference in New Issue
Block a user