You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
532 B

{% extends 'partials/base.html' %}
{% block content %}
<div class="titleBlockComparison disTab">
<div class="triangle1"></div>
<p>Дизайн интерьера квартиры 200m2</p>
<table class="compTable">
<tbody><tr>
<th></th>
<th></th>
</tr>
{% for user in users %}
<tr>
<td>{{ forloop.counter }}</td>
<td>
{{ user.get_full_name }}
</td>
</tr>
{% endfor %}
</tbody></table>
</div>
{% endblock %}