Move templates and assets to templates/ folder

- Move all HTML templates to templates/
- Move Platinum assets to templates/Platinum/
- Update default paths in generate_report.py

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Miguel Astor
2026-02-26 03:21:25 -04:00
parent 49c7a2bba8
commit f850e4d69c
245 changed files with 4 additions and 4 deletions

View File

@@ -177,8 +177,8 @@ def main():
)
parser.add_argument(
"--assets",
default="Platinum",
help="Path to Platinum assets directory (default: Platinum)"
default="templates/Platinum",
help="Path to Platinum assets directory (default: templates/Platinum)"
)
parser.add_argument(
"--background",
@@ -187,8 +187,8 @@ def main():
)
parser.add_argument(
"--template",
default="platinum.html",
help="HTML template file to use (default: platinum.html)"
default="templates/platinum.html",
help="HTML template file to use (default: templates/platinum.html)"
)
args = parser.parse_args()