11 lines
313 B
HTML
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 %} |