каталог -- главная страница
This commit is contained in:
8
oknardia/templates/report/report_last_user_visit.html
Executable file
8
oknardia/templates/report/report_last_user_visit.html
Executable file
@@ -0,0 +1,8 @@
|
||||
<!--- Информация об адресах просмотренных текущим пользователем --->{% load filters %}
|
||||
{% if LAST_VISIT and LAST_VISIT|length >= 1 %}<div class="col-xs-12">
|
||||
<div class="col-md-11 col-xs-12 last_user_visit"><h5>Цены на окна просмотренные вами:</h5>
|
||||
<ul>{% for ITEM in LAST_VISIT %}
|
||||
<li><a href="{{ ITEM.LastURL }}">Цены на окна для серии {{ ITEM.LastApart }} <small>({{ ITEM.LastAddress }})</small></a> <small>{{ ITEM.Time }}</small></li>{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>{% endif %}
|
||||
8
oknardia/templates/report/report_log_user_visit.html
Executable file
8
oknardia/templates/report/report_log_user_visit.html
Executable file
@@ -0,0 +1,8 @@
|
||||
<!--- Информация об адресах просмотренных всеми --->{% load filters %}
|
||||
{% if LOG_VISIT and LOG_VISIT|length >= 1 %}<div class="col-xs-12">
|
||||
<div class="col-md-11 col-xs-12 log_user_visit"><h5>Просмотры цен на окна другими пользователями:</h5>
|
||||
<ul>{% for ITEM in LOG_VISIT %}
|
||||
<li><a href="{{ ITEM.LogURL }}">Цены на окна для серии {{ ITEM.LogApart }} <small>({{ ITEM.LogAddress }})</small></a> <small>{{ ITEM.Time }}</small></li>{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>{% endif %}
|
||||
Reference in New Issue
Block a user