This commit is contained in:
2023-09-20 17:32:24 +03:00
parent dab09b193d
commit c322053b02
4 changed files with 323 additions and 13 deletions

View File

@@ -1,7 +1,9 @@
{% extends "tb_base.html" %}
{% block content %}
<div>{{ art.name }}</div>
<div>{{ art.description }}</div>
<div>{{ art.text|safe }}</div>
<div class="wrapper_name_art">{{ art.name }}</div>
{% if art.description != none %}
<div>{{ art.description }}</div>
{% endif %}
<div class="wrapper_text_art">{{ art.text|safe }}</div>
{% endblock %}