codes.j2 784 B

1234567891011121314151617181920212223242526
  1. {% extends "layout/backend.j2" %}
  2. {% block content %}
  3. <h1>Codes</h1>
  4. <div class="table-responsive">
  5. <table class="table table-striped table-sm">
  6. <thead>
  7. <tr>
  8. <th>Name</th>
  9. <th>Discord</th>
  10. <th>Rival Regions</th>
  11. <th>Code</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. {% for user in users %}
  16. <tr>
  17. <td>{{ user.name }}</td>
  18. <td>{{ user.discord }}</td>
  19. <td>{% if user.game_id %}<a href="{{ user.game_url() }}" target="_blank">{{ user.game_id }}</a>{% endif %}</td>
  20. <td>{{ code.get_digest(user.id) }}</td>
  21. </tr>
  22. {%- endfor -%}
  23. </tbody>
  24. </table>
  25. </div>
  26. {% endblock %}