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.
44 lines
1.7 KiB
44 lines
1.7 KiB
<ul>
|
|
{% for event in events %}
|
|
<li>
|
|
<div class="cal-item clearfix">
|
|
<a href="{{ event.get_permanent_url }}">
|
|
<div class="cali-pict">
|
|
{% include 'client/includes/show_logo.html' with obj=event %}
|
|
</div>
|
|
</a>
|
|
<div class="cli-info">
|
|
<div class="cli-top clearfix">
|
|
<header>
|
|
<div class="cli-title"><a href="{{ event.get_permanent_url }}">{{ event.name|safe }}</a></div>
|
|
<div class="cli-icos">
|
|
<span class="ce-ico icon-check"></span>
|
|
<span class="ce-ico icon-fav"></span>
|
|
</div>
|
|
</header>
|
|
<div class="cli-descr">{{ event.main_title|safe }}</div>
|
|
</div>
|
|
|
|
<div class="cli-bot clearfix">
|
|
<div class="cli-date">
|
|
{% include 'client/includes/show_date_block.html' with obj=event %}
|
|
</div>
|
|
<div class="cli-place">
|
|
<a href="{{ event.catalog }}country/{{ event.country.url }}">{{ event.country }}</a>, <a href="{{ event.catalog }}city/{{ event.city.url }}">{{ event.city }}</a>,
|
|
|
|
{% if event.place %}
|
|
<a href="/places/{{ event.place.url }}">{{ event.place }}</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="check-wrap">
|
|
<label class="check"><input type="checkbox" name="{{ event.event_type }}" value="{{ event.id }}" /></label>
|
|
</div>
|
|
</li>
|
|
|
|
{% endfor %}
|
|
</ul> |