Initial commit

This commit is contained in:
ThePetrovich 2026-08-17 22:42:04 +08:00
commit 97e799fd52
61 changed files with 2252 additions and 0 deletions

12
tests/templates/base.html Normal file
View file

@ -0,0 +1,12 @@
{% extends "yksa/base.html" %}
{% load i18n %}
{% comment %}
The three-line base.html every service is expected to keep. If a service needs
more than blocks to fit the chrome, the chrome is wrong.
{% endcomment %}
{% block title %}{% trans "Test service" %}{% endblock title %}
{% block navbar_items %}
<li class="nav-item">
<a class="nav-link nav-full-height border border-top-0" href="/">{% trans "Home" %}</a>
</li>
{% endblock navbar_items %}