|
|
|
@ -375,62 +375,62 @@ |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="box span8"> |
|
|
|
{# <div class="box span8">#} |
|
|
|
<div class="box-header well"> |
|
|
|
{# <div class="box-header well">#} |
|
|
|
<h2><i class="icon-pencil"></i>Деловая программа</h2> |
|
|
|
{# <h2><i class="icon-pencil"></i>Деловая программа</h2>#} |
|
|
|
</div> |
|
|
|
{# </div>#} |
|
|
|
<div class="box-content"> |
|
|
|
{# <div class="box-content">#} |
|
|
|
{% if object %} |
|
|
|
{# {% if object %}#} |
|
|
|
<div id="timetable_wrap"> |
|
|
|
{# <div id="timetable_wrap">#} |
|
|
|
<table class="table"> |
|
|
|
{# <table class="table">#} |
|
|
|
<colgroup> |
|
|
|
{# <colgroup>#} |
|
|
|
<col span="1" style="width: 35%;"> |
|
|
|
{# <col span="1" style="width: 35%;">#} |
|
|
|
<col span="1" style="width: 10%;"> |
|
|
|
{# <col span="1" style="width: 10%;">#} |
|
|
|
<col span="1" style="width: 10%;"> |
|
|
|
{# <col span="1" style="width: 10%;">#} |
|
|
|
<col span="1" style="width: 25%;"> |
|
|
|
{# <col span="1" style="width: 25%;">#} |
|
|
|
<col span="1" style="width: 10%;"> |
|
|
|
{# <col span="1" style="width: 10%;">#} |
|
|
|
<col span="1" style="width: 10%;"> |
|
|
|
{# <col span="1" style="width: 10%;">#} |
|
|
|
</colgroup> |
|
|
|
{# </colgroup>#} |
|
|
|
<thead> |
|
|
|
{# <thead>#} |
|
|
|
<tr> |
|
|
|
{# <tr>#} |
|
|
|
<th>Программа</th> |
|
|
|
{# <th>Программа</th>#} |
|
|
|
<th>Начало</th> |
|
|
|
{# <th>Начало</th>#} |
|
|
|
<th>Конец</th> |
|
|
|
{# <th>Конец</th>#} |
|
|
|
<th>Спикеры</th> |
|
|
|
{# <th>Спикеры</th>#} |
|
|
|
<th>Организатор</th> |
|
|
|
{# <th>Организатор</th>#} |
|
|
|
<th> </th> |
|
|
|
{# <th> </th>#} |
|
|
|
</tr> |
|
|
|
{# </tr>#} |
|
|
|
|
|
|
|
{##} |
|
|
|
</thead> |
|
|
|
{# </thead>#} |
|
|
|
<tbody> |
|
|
|
{# <tbody>#} |
|
|
|
{% for timetable in timetables %} |
|
|
|
{# {% for timetable in timetables %}#} |
|
|
|
<tr> |
|
|
|
{# <tr>#} |
|
|
|
<td>{{ timetable.programe|safe }}</td> |
|
|
|
{# <td>{{ timetable.programe|safe }}</td>#} |
|
|
|
<td>{{ timetable.begin|date:"o-m-d H:i" }}</td> |
|
|
|
{# <td>{{ timetable.begin|date:"o-m-d H:i" }}</td>#} |
|
|
|
<td>{{ timetable.end|date:"o-m-d H:i" }}</td> |
|
|
|
{# <td>{{ timetable.end|date:"o-m-d H:i" }}</td>#} |
|
|
|
<td>{{ timetable.speaker }}</td> |
|
|
|
{# <td>{{ timetable.speaker }}</td>#} |
|
|
|
<td> |
|
|
|
{# <td>#} |
|
|
|
{{ timetable.timetable_organiser }} |
|
|
|
{# {{ timetable.timetable_organiser }}#} |
|
|
|
</td> |
|
|
|
{# </td>#} |
|
|
|
<td> |
|
|
|
{# <td>#} |
|
|
|
<button class="btn btn-danger remove_timetable" value="{{ timetable.id }}"> |
|
|
|
{# <button class="btn btn-danger remove_timetable" value="{{ timetable.id }}">#} |
|
|
|
Удалить |
|
|
|
{# Удалить#} |
|
|
|
</button> |
|
|
|
{# </button>#} |
|
|
|
</td> |
|
|
|
{# </td>#} |
|
|
|
</tr> |
|
|
|
{# </tr>#} |
|
|
|
{% endfor %} |
|
|
|
{# {% endfor %}#} |
|
|
|
</tbody> |
|
|
|
{# </tbody>#} |
|
|
|
</table> |
|
|
|
{# </table>#} |
|
|
|
</div> |
|
|
|
{# </div>#} |
|
|
|
|
|
|
|
{##} |
|
|
|
<a href="#timetableModal" id="timetable_add" role="btn btn-success" class="btn btn-success" data-toggle="modal"><i class="icon-plus-sign icon-white"></i> Добавить program</a> |
|
|
|
{# <a href="#timetableModal" id="timetable_add" role="btn btn-success" class="btn btn-success" data-toggle="modal"><i class="icon-plus-sign icon-white"></i> Добавить program</a>#} |
|
|
|
{% else %} |
|
|
|
{# {% else %}#} |
|
|
|
<p>Деловую программу можно добавлять только после введения основных данных</p> |
|
|
|
{# <p>Деловую программу можно добавлять только после введения основных данных</p>#} |
|
|
|
{% endif %} |
|
|
|
{# {% endif %}#} |
|
|
|
|
|
|
|
{##} |
|
|
|
|
|
|
|
{##} |
|
|
|
</div> |
|
|
|
{# </div>#} |
|
|
|
</div> |
|
|
|
{# </div>#} |
|
|
|
|
|
|
|
|
|
|
|
<div class="box span8"> |
|
|
|
<div class="box span8"> |
|
|
|
<div class="box-header well"> |
|
|
|
<div class="box-header well"> |
|
|
|
|