Files
tripwithbonus/templates/pages/p_articles.html
SDE bd5317fa27 0.7.8
article picture
2023-09-01 16:24:47 +03:00

11 lines
309 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 %}