|
@@ -7,6 +7,7 @@
|
|
|
<th>{{ 'Course'|get_lang }}</th>
|
|
|
<th>{{ 'Session'|get_lang }}</th>
|
|
|
<th>{{ 'Participants'|get_lang }}</th>
|
|
|
+ <th>{{ 'Actions'|get_lang }}</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
@@ -30,10 +31,15 @@
|
|
|
{{ meeting.show_links }}
|
|
|
{% endif %}
|
|
|
</td>
|
|
|
- <td>{{ meeting.course ?: '-' }}</td>
|
|
|
- <td>{{ meeting.session ?: '-' }}</td>
|
|
|
+ <td>{{ meeting.course ? meeting.course.title : '-' }}</td>
|
|
|
+ <td>{{ meeting.session ? meeting.session.name : '-' }}</td>
|
|
|
+ <td>{{ meeting.participants ? meeting.participants|join('<br>') : '-' }}</td>
|
|
|
<td>
|
|
|
- {{ meeting.participants ? meeting.participants|join('<br>') : '-' }}
|
|
|
+ {% if meeting.status == 1 %}
|
|
|
+ <a class="btn btn-default" href="{{ meeting.end_url }} "> {{ 'CloseMeeting'|get_lang }}</a>
|
|
|
+ {% else %}
|
|
|
+ {{ meeting.action_links }}
|
|
|
+ {% endif %}
|
|
|
</td>
|
|
|
</tr>
|
|
|
{% endfor %}
|