9 lines
273 B
HTML
9 lines
273 B
HTML
{% extends "tb_base.html" %}
|
|
|
|
{% block content %}
|
|
<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 %} |