Files
tripwithbonus/templates/pages/p_articles.html
SDE 0efe073a2a 0.7.10
article picture
2023-09-01 16:30:04 +03:00

11 lines
313 B
HTML

{% extends "tb_base.html" %}
{% load static %}
{% block content %}
{% for art in articles %}
<div><img src="{{ MEDIA_URL }}{{ art.picture }}" /></div>
<div>{{ art.name }}</div>
<div>{{ art.description }}</div>
{# <div>{{ art.text|safe }}</div>#}
{% endfor %}
{% endblock %}