Merge remote-tracking branch 'origin/main'

This commit is contained in:
2023-08-28 18:06:01 +03:00
17 changed files with 549 additions and 22 deletions

View File

@@ -0,0 +1,7 @@
{% extends "tb_base.html" %}
{% block content %}
<div>{{ art.name }}</div>
<div>{{ art.description }}</div>
<div>{{ art.text|safe }}</div>
{% endblock %}

View File

@@ -0,0 +1,9 @@
{% extends "tb_base.html" %}
{% block content %}
{% for art in articles %}
<div>{{ art.name }}</div>
<div>{{ art.description }}</div>
<div>{{ art.text|safe }}</div>
{% endfor %}
{% endblock %}

View File

@@ -0,0 +1,7 @@
{% extends "tb_base.html" %}
{% block content %}
<div>{{ art.name }}</div>
<div>{{ art.description }}</div>
<div>{{ art.text|safe }}</div>
{% endblock %}