1234567891011121314151617181920212223242526 |
- {% extends "layout/backend.j2" %}
- {% block content %}
- <h1>Codes</h1>
- <div class="table-responsive">
- <table class="table table-striped table-sm">
- <thead>
- <tr>
- <th>Name</th>
- <th>Discord</th>
- <th>Rival Regions</th>
- <th>Code</th>
- </tr>
- </thead>
- <tbody>
- {% for user in users %}
- <tr>
- <td>{{ user.name }}</td>
- <td>{{ user.discord }}</td>
- <td>{% if user.game_id %}<a href="{{ user.game_url() }}" target="_blank">{{ user.game_id }}</a>{% endif %}</td>
- <td>{{ code.get_digest(user.id) }}</td>
- </tr>
- {%- endfor -%}
- </tbody>
- </table>
- </div>
- {% endblock %}
|