i18n: fix string with variables format

This commit is contained in:
Iain Learmonth 2026-03-08 16:02:18 +00:00
parent 50ae94c9e9
commit 6b8fb3b470
12 changed files with 115 additions and 22 deletions

9
src/snapshots/models.py Normal file
View file

@ -0,0 +1,9 @@
from sqlalchemy.orm import Mapped
from src.models import CustomBase, IdMixin
class Snapshot(CustomBase, IdMixin):
__tablename__ = "snapshot"
url: Mapped[str]