15 lines
243 B
HTML
15 lines
243 B
HTML
{% extends "shared/base.html" %}
|
|
|
|
|
|
{% block title %}
|
|
<title>Kontor</title>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% with msg=msg %}
|
|
{% include "components/alerts.html" %}
|
|
{% endwith %}
|
|
<div class="container">
|
|
</div>
|
|
{% endblock %}
|