forked from External/greenlight
add recording name to table
This commit is contained in:
parent
43e58e402e
commit
2c2590cf18
|
@ -34,6 +34,7 @@ class @Recordings
|
|||
},
|
||||
columns: [
|
||||
{ data: "start_time" },
|
||||
{ data: "name", visible: $(".page-wrapper.rooms").data('main-room') },
|
||||
{ data: "previews", orderable: false },
|
||||
{ data: "duration", orderable: false },
|
||||
{ data: "playbacks", orderable: false },
|
||||
|
@ -55,7 +56,7 @@ class @Recordings
|
|||
return data
|
||||
},
|
||||
{
|
||||
targets: 1,
|
||||
targets: 2,
|
||||
render: (data, type, row) ->
|
||||
if type == 'display'
|
||||
str = ''
|
||||
|
@ -66,7 +67,7 @@ class @Recordings
|
|||
return data
|
||||
},
|
||||
{
|
||||
targets: 3,
|
||||
targets: 4,
|
||||
render: (data, type, row) ->
|
||||
if type == 'display'
|
||||
str = ''
|
||||
|
|
|
@ -36,6 +36,7 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
|
|||
<table id="recordings" class="table" width="100%">
|
||||
<thead>
|
||||
<th><%= t('date_recorded') %></th>
|
||||
<th><%= t('name') %></th>
|
||||
<th><%= t('thumbnails') %></th>
|
||||
<th><%= t('duration') %></th>
|
||||
<th><%= t('views') %></th>
|
||||
|
|
|
@ -88,6 +88,7 @@ en-US:
|
|||
body: "You have been invited by %{user} to a meeting.\n\nPlease open the following page in your web browser: &&URL&&"
|
||||
subject: "%{user} invited you to a meeting"
|
||||
my_room: my room
|
||||
name: Name
|
||||
no: No
|
||||
notification_mailer:
|
||||
recording_ready_email:
|
||||
|
|
Loading…
Reference in New Issue