fix table resume session

pull/2729/head
Alex Aragón 7 years ago
parent 08e9f1df2c
commit 92962a98e4
  1. 4
      main/session/resume_session.php
  2. 2
      main/template/default/session/resume_session.tpl

@ -141,7 +141,7 @@ $url = Display::url(
);
$courseListToShow = Display::page_subheader(get_lang('CourseList').$url);
$courseListToShow .= '<table id="session-list-course" class="data_table">
$courseListToShow .= '<table id="session-list-course" class="table table-hover data_table">
<tr>
<th width="35%">'.get_lang('CourseTitle').'</th>
<th width="30%">'.get_lang('CourseCoach').'</th>
@ -262,7 +262,7 @@ $userList = SessionManager::get_users_by_session($sessionId);
if (!empty($userList)) {
$table = new HTML_Table(
['class' => 'data_table', 'id' => 'session-user-list']
['class' => 'table table-hover data_table', 'id' => 'session-user-list']
);
$table->setHeaderContents(0, 0, get_lang('User'));
$table->setHeaderContents(0, 1, get_lang('Status'));

@ -5,7 +5,7 @@
{{ session_header }}
{{ title }}
<table id="session-properties" class="data_table">
<table id="session-properties" class="table table-hover data_table">
<tr>
<td>{{ 'CreatedBy'|get_lang }}</td>
<td>{{ session_admin.complete_name_with_message_link }}</td>

Loading…
Cancel
Save