Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
335 B
13 lines
335 B
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ flatpage.title }}{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div>Toto je stránka podle šablony "home.html"</div>
|
|
<p><a href='{% url 'admin:index' %}'>Administrátorské rozhraní</a> (admin/admin)
|
|
<h2>{{ flatpage.title }}</h2>
|
|
<div>
|
|
{{ flatpage.content }}
|
|
</div>
|
|
{% endblock content %}
|
|
|
|
|