VC/Vidyo: Move Vidyo specific code from core

This commit is contained in:
Ilias Trichopoulos 2015-02-24 09:16:01 +01:00 committed by Adrian Moennich
parent 14c5842ef3
commit af093114d3
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,5 @@
{% set owner = retrieve_principal(vc_room.data['owner']) %}
{% set phone_link = settings.get('vidyo_phone_link') %}
<dl>
<dt>{% trans %}Description{% endtrans %}</dt>
<dd>{{ vc_room.data.description }}</dd>
@ -6,7 +8,7 @@
<dd>{{ vc_room.data.extension }}</dd>
{% endif %}
<dt>{% trans %}Moderator{% endtrans %}</dt>
<dd>{{ moderator.getFullName() }}</dd>
<dd>{{ owner.getFullName() }}</dd>
<dt>{% trans %}Linked to{% endtrans %}</dt>
<dd>
{% if event_vc_room.link_type.name == 'event' %}

View File

@ -0,0 +1,7 @@
{% set vc_room = event_vc_room.vc_room %}
<div class="toolbar right">
<div class="group">
<a class="i-button i-button-small event-service-right-button highlight join-button" href="{{ vc_room.data.url }}"><strong>{% trans %}Join{% endtrans %}</strong></a>
</div>
</div>
<!-- TODO: Add template hook for RAVEM "Connect" button -->