|  | @@ -19,6 +19,19 @@
 | 
	
		
			
			| 19 | 19 |                  <a title="${_('Delete current workspace')}" class="btn btn-default" href="${tg.url('/admin/workspaces/{}/delete'.format(result.workspace.id))}">${ICON.FA('fa-trash fa-fw t-less-visible')} ${_('Delete')}</a>
 | 
	
		
			
			| 20 | 20 |              </div>
 | 
	
		
			
			| 21 | 21 |          % endif
 | 
	
		
			
			|  | 22 | +            ${JITSI_MEET_BUTTON(current_user, workspace)}
 | 
	
		
			
			| 22 | 23 |      </div> <!-- # End of side bar right -->
 | 
	
		
			
			| 23 | 24 |      ## SIDEBAR RIGHT [END]
 | 
	
		
			
			| 24 | 25 |  </%def>
 | 
	
		
			
			|  | 26 | +
 | 
	
		
			
			|  | 27 | +<%def name="WORKSPACE_USER(current_user, workspace)">
 | 
	
		
			
			|  | 28 | +    <div>
 | 
	
		
			
			|  | 29 | +        ${JITSI_MEET_BUTTON(current_user, workspace)}
 | 
	
		
			
			|  | 30 | +    </div> <!-- # End of side bar right -->
 | 
	
		
			
			|  | 31 | +</%def>
 | 
	
		
			
			|  | 32 | +
 | 
	
		
			
			|  | 33 | +<%def name="JITSI_MEET_BUTTON(current_user, workspace)">
 | 
	
		
			
			|  | 34 | +    <div class="btn-group btn-group-vertical">
 | 
	
		
			
			|  | 35 | +        <a title="${_('Video conference')}" class="btn btn-default" href="${tg.url('/workspaces/{}/videoconf'.format(result.workspace.id))}">${ICON.FA('fa-video-camera fa-fw t-less-visible')} ${_('Video Conference')}</a>
 | 
	
		
			
			|  | 36 | +    </div>
 | 
	
		
			
			|  | 37 | +</%def>
 |