Minor - Improve teacher time report template - refs BT#13109

pull/2487/head
Angel Fernando Quiroz Campos 9 years ago
parent 902b6dfe15
commit 1749519792
  1. 6
      main/template/default/admin/teacher_time_report.tpl

@ -25,7 +25,7 @@ $(document).on('ready', function () {
</script>
{{ form }}
<h2 class="page-header">{{ report_title }} <small>{{ report_sub_title }}</small></h2>
<h3 class="page-header">{{ report_title }} <small>{{ report_sub_title }}</small></h3>
<table class="table">
<thead>
@ -35,7 +35,7 @@ $(document).on('ready', function () {
<th>{{ 'Course' | get_lang }}</th>
{% endif %}
<th>{{ 'Coach' | get_lang }}</th>
<th>{{ 'TotalTime' | get_lang }}</th>
<th class="text-center">{{ 'TotalTime' | get_lang }}</th>
</tr>
</thead>
<tbody>
@ -46,7 +46,7 @@ $(document).on('ready', function () {
<td>{{ row.course.name }}</td>
{% endif %}
<td>{{ row.coach.complete_name }} ({{ row.coach.username}})</td>
<td>{{ row.total_time }}</td>
<td class="text-center">{{ row.total_time }}</td>
</tr>
{% endfor %}
</tbody>

Loading…
Cancel
Save