Initial commit
This commit is contained in:
commit
97e799fd52
61 changed files with 2252 additions and 0 deletions
12
tests/templates/base.html
Normal file
12
tests/templates/base.html
Normal 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue