users_groups.html 224 B

1234567891011121314
  1. {% if user %}
  2. <table class="laboratory_list">
  3. <tr>
  4. <td>State</td>
  5. <td>{{ user_state }}</td>
  6. </tr>
  7. </table>
  8. {% elif group %}
  9. {% if projects %}
  10. {{ projects_list }}
  11. {% else %}
  12. {{ subgroups_list }}
  13. {% endif %}
  14. {% endif %}