diff --git a/jarvis/core/templates/dashboard/dashboard.html b/jarvis/core/templates/dashboard/dashboard.html index 637b359..0b51bee 100644 --- a/jarvis/core/templates/dashboard/dashboard.html +++ b/jarvis/core/templates/dashboard/dashboard.html @@ -27,7 +27,7 @@

Hi {{ user.username }} !

-

Welcome to Jarvi v0.86 (last update : 05-07-2023)

+

Welcome to Jarvi v0.9 (last update : 7-7-2023)

This application is here to help coaches to manage the gymnasts (evolution, evaluation, routines, scores, …). This tool is not perfect so feel free to make improvement proposals, bug reports, … by sending me an email.

You can find the user manual here (in french).

diff --git a/jarvis/followup/migrations/0055_alter_injury_body_side.py b/jarvis/followup/migrations/0055_alter_injury_body_side.py new file mode 100644 index 0000000..b5f96e4 --- /dev/null +++ b/jarvis/followup/migrations/0055_alter_injury_body_side.py @@ -0,0 +1,21 @@ +# Generated by Django 4.2 on 2023-07-07 12:32 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("followup", "0054_alter_injury_body_side"), + ] + + operations = [ + migrations.AlterField( + model_name="injury", + name="body_side", + field=models.PositiveSmallIntegerField( + choices=[(0, "Not Applicable"), (1, "Left"), (2, "Right"), (3, "Both")], + verbose_name="Body side", + ), + ), + ] diff --git a/jarvis/followup/models.py b/jarvis/followup/models.py index 15dd68a..a5e67ff 100644 --- a/jarvis/followup/models.py +++ b/jarvis/followup/models.py @@ -17,30 +17,12 @@ INJURY_MECHANISM_CHOICE = ( ) INJURY_BODY_SIDE_CHOICE = ( - (0, "N/A"), + (0, "Not Applicable"), (1, "Left"), (2, "Right"), (3, "Both"), ) -INJURY_LOCATION_CHOICE = ( - (0, "Head / Face"), - (1, "Neck / Cervical spine"), - (2, "Sternum / Ribs / Upperback"), - (3, "Abdomen"), - (4, "Low back / Sacrum / Pelvis"), - (5, "Shoulder / Clavicula"), - (6, "Upper Arm"), - (7, "Elbow"), - (8, "Hand / Finger / Thumb"), - (9, "Hip / Groin"), - (9, "Thigh"), - (10, "Knee"), - (11, "Lower Leg / Achilles Tendon"), - (12, "Ankle"), - (13, "Foot / Toe"), -) - ROUTINE_TYPE_CHOICE = ( (0, "Other"), (1, "Q1R1"),