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.
35 lines
1.5 KiB
35 lines
1.5 KiB
{% extends 'base_index.html' %}
|
|
{% load course_filter %}
|
|
{% block title %}История активности {% endblock %}
|
|
{% block content %}
|
|
<div class="col">
|
|
<!-- main header -->
|
|
<div class="wrapper-md">
|
|
<div class="row">
|
|
<h3 style="margin-top: 0;
|
|
margin-bottom: 20px;
|
|
margin-left: 30px;"><i class="glyphicon glyphicon-th-list"></i> История активности</h3>
|
|
<ul class="timeline">
|
|
{% for i in b_actions %}
|
|
<li class="tl-item tl-left">
|
|
<div class="tl-wrap {{ i.get_a_type_display }}">
|
|
<div class="tl-content panel padder b-a col-lg-11">
|
|
<span class="arrow left pull-up hidden-left"></span>
|
|
<span class="arrow right pull-up visible-left"></span>
|
|
<div class="text-lt m-b-sm" style="margin-left: 15px;font-weight: bold; font-size: 16px;margin-bottom: 5px;">{{ i.place }}<span class="tags l-h-2x" style="margin-left: 10px;
|
|
font-weight: normal;
|
|
font-size: 13px;">{{ i.date }}</span></div>
|
|
<div class="panel-body p-b-none pull-in b-t b-light" style="margin-left: 10px;padding-bottom: 20px !important;">
|
|
<div>{{ i.text|safe }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- / main header -->
|
|
|
|
</div>
|
|
{% endblock %} |