|  | @@ -59,11 +59,6 @@
 | 
	
		
			
			| 59 | 59 |          % else:
 | 
	
		
			
			| 60 | 60 |              <p class="t-less-visible">${_('No description available')}</p>
 | 
	
		
			
			| 61 | 61 |          % endif
 | 
	
		
			
			| 62 |  | -        % if result.workspace.calendar_enabled:
 | 
	
		
			
			| 63 |  | -            <p>
 | 
	
		
			
			| 64 |  | -                ${_('Calendar URL')}: ${result.workspace.calendar_url}
 | 
	
		
			
			| 65 |  | -            </p>
 | 
	
		
			
			| 66 |  | -        % endif
 | 
	
		
			
			| 67 | 62 |  
 | 
	
		
			
			| 68 | 63 |          <% member_nb = len(result.workspace.members) %>
 | 
	
		
			
			| 69 | 64 |          % if member_nb<=0:
 | 
	
	
		
			
			|  | @@ -75,22 +70,33 @@
 | 
	
		
			
			| 75 | 70 |                  % else:
 | 
	
		
			
			| 76 | 71 |                      ${_('This workspace has {a_open}{member_nb} members{a_close}').format(a_open='<a data-toggle="collapse" href="#memberList" aria-expanded="false" aria-controls="memberList">', member_nb=member_nb, a_close='</a>')|n}
 | 
	
		
			
			| 77 | 72 |                  % endif
 | 
	
		
			
			| 78 |  | -                </p>
 | 
	
		
			
			| 79 |  | -                <div class="collapse" id="memberList">
 | 
	
		
			
			| 80 |  | -                    <table class="table">
 | 
	
		
			
			| 81 |  | -                        % for member in result.workspace.members:
 | 
	
		
			
			| 82 |  | -                            <tr>
 | 
	
		
			
			| 83 |  | -                                <td><strong>${member.name}</strong></td>
 | 
	
		
			
			| 84 |  | -                                <td>
 | 
	
		
			
			| 85 |  | -                                    ${TIM.ICO_FA_BADGED('fa fa-fw fa-flag', member.role_description, member.style)}
 | 
	
		
			
			| 86 |  | -                                    ${member.role_description}
 | 
	
		
			
			| 87 |  | -                                </td>
 | 
	
		
			
			| 88 |  | -                            </tr>
 | 
	
		
			
			| 89 |  | -                        % endfor
 | 
	
		
			
			| 90 |  | -                    </table>
 | 
	
		
			
			| 91 |  | -                </div>
 | 
	
		
			
			| 92 | 73 |              </p>
 | 
	
		
			
			|  | 74 | +            <div class="collapse" id="memberList">
 | 
	
		
			
			|  | 75 | +                <table class="table">
 | 
	
		
			
			|  | 76 | +                    % for member in result.workspace.members:
 | 
	
		
			
			|  | 77 | +                        <tr>
 | 
	
		
			
			|  | 78 | +                            <td><strong>${member.name}</strong></td>
 | 
	
		
			
			|  | 79 | +                            <td>
 | 
	
		
			
			|  | 80 | +                                ${TIM.ICO_FA_BADGED('fa fa-fw fa-flag', member.role_description, member.style)}
 | 
	
		
			
			|  | 81 | +                                ${member.role_description}
 | 
	
		
			
			|  | 82 | +                            </td>
 | 
	
		
			
			|  | 83 | +                        </tr>
 | 
	
		
			
			|  | 84 | +                    % endfor
 | 
	
		
			
			|  | 85 | +                </table>
 | 
	
		
			
			|  | 86 | +            </div>
 | 
	
		
			
			|  | 87 | +        % endif
 | 
	
		
			
			|  | 88 | +
 | 
	
		
			
			|  | 89 | +        % if result.workspace.calendar_enabled:
 | 
	
		
			
			|  | 90 | +            <p>
 | 
	
		
			
			|  | 91 | +                ${_('This workspace has {a_open}an associated calendar{a_close}').format(a_open='<a data-toggle="collapse" href="#calendarConfig" aria-expanded="false" aria-controls="calendarConfig">', a_close='</a>')|n}
 | 
	
		
			
			|  | 92 | +            </p>
 | 
	
		
			
			|  | 93 | +            <div class="collapse" id="calendarConfig">
 | 
	
		
			
			|  | 94 | +                <p>${_('You can access the calendar using your own software: Outlook, Thunderbird, etc.')}</p>
 | 
	
		
			
			|  | 95 | +                <p>${_('The url to setup is the following one:')}</p>
 | 
	
		
			
			|  | 96 | +                <p class="form-control">${result.workspace.calendar_url}"</p>
 | 
	
		
			
			|  | 97 | +            </div>
 | 
	
		
			
			| 93 | 98 |          % endif
 | 
	
		
			
			|  | 99 | +
 | 
	
		
			
			| 94 | 100 |      </div>
 | 
	
		
			
			| 95 | 101 |  </div>
 | 
	
		
			
			| 96 | 102 |  
 |