|
@@ -0,0 +1,22 @@
|
|
1
|
+<%namespace name="TIM" file="tracim.templates.pod"/>
|
|
2
|
+<%namespace name="ICON" file="tracim.templates.widgets.icon"/>
|
|
3
|
+<%def name="title()">${_('Invite someone to video-conference')}</%def>
|
|
4
|
+
|
|
5
|
+<%def name="content(jitsi_meet_room)">
|
|
6
|
+ <div class="modal-header">
|
|
7
|
+ <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
|
|
8
|
+ <h4 class="modal-title">${ICON.FA('fa-share')} ${self.title()}</h4>
|
|
9
|
+ </div>
|
|
10
|
+ <div class="modal-body">
|
|
11
|
+ <p>
|
|
12
|
+ ${_('To invite someone from outside of tracim into this conference, share this link. This link is available for 5 minutes.')}
|
|
13
|
+ </p>
|
|
14
|
+ <textarea readonly=readonly wrap="off" style="width: 100%;">${jitsi_meet_room.generate_url()}</textarea>
|
|
15
|
+ </div>
|
|
16
|
+ <div class="modal-footer">
|
|
17
|
+ <button type="button" class="btn btn-default" data-dismiss="modal">${_('Close')}</button>
|
|
18
|
+ </div>
|
|
19
|
+ </form>
|
|
20
|
+</%def>
|
|
21
|
+${self.content(jitsi_meet_room)}
|
|
22
|
+
|