Compare commits

...

2 Commits

Author SHA1 Message Date
ba4270e32e Update gitignore 2026-02-18 06:14:49 -05:00
9bcce9564d New template fix 2026-02-18 06:14:16 -05:00
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -19,6 +19,7 @@ wheels/
*.egg-info/ *.egg-info/
.installed.cfg .installed.cfg
*.egg *.egg
SCRATCH
# Virtual environments # Virtual environments
venv/ venv/

View File

@@ -247,8 +247,8 @@ def notes_1_template(variables, width_pixels=991, height_pixels=413, filename=No
right_margin = margin right_margin = margin
line_height = 46 line_height = 46
animal = variables.get('animal', '') animal = variables.get('animal_name', '')
note_date = variables.get('date', '') note_date = date.today().strftime("%d %b %Y")
notes = variables.get('notes', '') notes = variables.get('notes', '')
# Animal (left) and date (right) on the same line # Animal (left) and date (right) on the same line