Browse Source

Merge branch '1.11.x' of https://github.com/chamilo/chamilo-lms into 1.11.x

Nicolas Ducoulombier 7 years ago
parent
commit
4dd44498c4
1 changed files with 3 additions and 3 deletions
  1. 3 3
      main/template/default/admin/teacher_time_report.tpl

+ 3 - 3
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>