0.0.19 use new file structure

This commit is contained in:
2023-07-17 18:48:33 +03:00
parent a7b014da20
commit 113e576d4c
9 changed files with 110 additions and 49 deletions

View File

@@ -1,16 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
{% include 'inter/meta.html' %}
</head>
<body>
<div class="wrapper">
{% include 'blocks/b_header.html' %}
{% include 'forms/f_login.html' %}
{% include 'blocks/b_footer.html' %}
{% extends 'tb_base.html' %}
{% load static %}
</div>
</body>
</html>
{% block meta %}
<script src='{% static "js/authorization.js" %}'></script>
{% endblock %}
{% block content %}
{% include 'forms/f_login.html' %}
{% endblock %}

View File

@@ -1,5 +1,9 @@
{% extends 'tb_base.html' %}
{% include 'inter/meta.html' %}
{% include 'blocks/b_header.html' %}
{% include 'forms/f_registration.html' %}
{% include 'blocks/b_footer.html' %}
{% block meta %}
<script src='{% static "js/registration.js" %}'></script>
{% endblock %}
{% block content %}
{% include 'forms/f_registration.html' %}
{% endblock %}

View File

@@ -1,4 +1,11 @@
{% include 'inter/meta.html' %}
{% include 'blocks/b_header.html' %}
{% include 'blocks/b_user_profile.html' %}
{% include 'blocks/b_footer.html' %}
{% extends 'tb_base.html' %}
{% load static %}
{% block meta %}
<script src='{% static "js/newRoute.js" %}'></script>
{% endblock %}
{% block content %}
{% include 'blocks/b_user_profile.html' %}
{% endblock %}