listing.tpl 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <div class ="row">
  2. {% if bbb_status == true %}
  3. {% if show_join_button == true %}
  4. <div class ="span12" style="text-align:center">
  5. {{ form }}
  6. <p>
  7. <a href="{{ conference_url }}" target="_blank" class="btn btn-primary btn-large">
  8. {{ 'EnterConference'|get_lang }}
  9. </a>
  10. <span id="users_online" class="label label-warning">
  11. {{ 'XUsersOnLine'| get_lang | format(users_online) }}
  12. </span>
  13. </p>
  14. <div class="well">
  15. <strong>{{ 'UrlMeetingToShare'|get_lang }}</strong>
  16. <input type="text" class="form-control text-center" readonly value="{{ conference_url }}">
  17. </div>
  18. </div>
  19. {% endif %}
  20. <div class ="span12">
  21. <div class="page-header">
  22. <h2>{{ 'RecordList'|get_lang }}</h2>
  23. </div>
  24. <table class="table">
  25. <tr>
  26. <!-- th>#</th -->
  27. <th>{{ 'CreatedAt'|get_lang }}</th>
  28. <th>{{ 'Status'|get_lang }}</th>
  29. <th>{{ 'Records'|get_lang }}</th>
  30. {% if allow_to_edit %}
  31. <th>{{ 'Actions'|get_lang }}</th>
  32. {% endif %}
  33. </tr>
  34. {% for meeting in meetings %}
  35. <tr>
  36. <!-- td>{{ meeting.id }}</td -->
  37. {% if meeting.visibility == 0 %}
  38. <td class="muted">{{ meeting.created_at }}</td>
  39. {% else %}
  40. <td>{{ meeting.created_at }}</td>
  41. {% endif %}
  42. <td>
  43. {% if meeting.status == 1 %}
  44. <span class="label label-success">{{ 'MeetingOpened'|get_lang }}</span>
  45. {% else %}
  46. <span class="label label-info">{{ 'MeetingClosed'|get_lang }}</span>
  47. {% endif %}
  48. </td>
  49. <td>
  50. {% if meeting.record == 1 %}
  51. {# Record list #}
  52. {{ meeting.show_links }}
  53. {% else %}
  54. {{ 'NoRecording'|get_lang }}
  55. {% endif %}
  56. </td>
  57. {% if allow_to_edit %}
  58. <td>
  59. {% if meeting.status == 1 %}
  60. <a class="btn btn-default" href="{{ meeting.end_url }} "> {{ 'CloseMeeting'|get_lang }}</a>
  61. {% else %}
  62. {{ meeting.action_links }}
  63. {% endif %}
  64. </td>
  65. {% endif %}
  66. </tr>
  67. {% endfor %}
  68. </table>
  69. </div>
  70. {% else %}
  71. <div class ="span12" style="text-align:center">
  72. {{ 'ServerIsNotRunning' | return_message('warning') }}
  73. </div>
  74. {% endif %}
  75. </div>