Improvements to user management

This commit is contained in:
Ross
2022-11-14 14:25:24 +00:00
parent 02eb812122
commit 6e6ba178b5
27 changed files with 515 additions and 20 deletions
@@ -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),
),
]
+12
View File
@@ -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;
}