-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
125d5ec
commit 05db02e
Showing
4 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
...rift_leeway_webgui/leeway/migrations/0009_leewaysimulation_send_animation_sea_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Generated by Django 4.2.7 on 2023-12-03 14:59 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [("leeway", "0008_leewaysimulation_traceback")] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="leewaysimulation", | ||
name="send_animation_sea", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Attach Gif to e-mail with animation of particles with sea currents.", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="leewaysimulation", | ||
name="send_animation_wind", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Attach Gif to e-mail with animation of particles and wind fields.", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="leewaysimulation", | ||
name="send_heatmap", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Attach PNG to e-mail with heat map of final particle locations.", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="leewaysimulation", | ||
name="send_trajectories", | ||
field=models.BooleanField( | ||
default=True, | ||
help_text="Attach PNG to e-mail with particle trajectories.", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters