users-list.html 146 B

123456789
  1. <ul class="users w-75">
  2. {% for user in users %}
  3. <li style="list-style: none">
  4. {% include "partial/user-card.html" %}
  5. </li>
  6. {% endfor %}
  7. </ul>