1
0
This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Timmy-time-dashboard/src/dashboard/templating.py
2026-03-05 18:56:52 -05:00

8 lines
219 B
Python

"""Shared Jinja2Templates instance for all dashboard routes."""
from pathlib import Path
from fastapi.templating import Jinja2Templates
templates = Jinja2Templates(directory=str(Path(__file__).parent / "templates"))