You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.6 KiB

  1. <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 mb-12">
  2. <div class="card" id="game-list">
  3. <div class="card-body" style="padding-bottom: 0 !important;">
  4. <h5 class="card-title" style="margin-bottom: 1.25rem !important;">Games In Progress</h5>
  5. {{ current_user }}
  6. {% if current_user.is_authenticated %}
  7. <table class="table table-borderless" id="game-table">
  8. <thead>
  9. <tr>
  10. <th style="vertical-align: middle;">Game</th>
  11. <th style="width: 50px; text-align: center; font-weight: normal;"><a href="#game-table" class="text-primary" data-toggle="modal" data-target="#modalNewGame">Add</a></th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. {% if game_list is defined and account_url != [] %}
  16. {% for game in game_list %}
  17. <tr>
  18. <th><a href="{{ game[3] }}" class="game-link">{{ game[2] }}</a></th>
  19. <td style="vertical-align: middle;"><a href="#game-table" onclick="deleteGame({{ game[0] }})" class="text-danger">Delete</a></td>
  20. </tr>
  21. {% endfor %}
  22. {% endif %}
  23. </tbody>
  24. </table>
  25. <div style="text-align: center;">
  26. <a href="/logout" class="text-warning">Log out</a>
  27. <br><br>
  28. </div>
  29. {% else %}
  30. <div style="text-align: center;">
  31. <a href="/login" class="text-success">Log in</a>
  32. <br><br>
  33. </div>
  34. {% endif %}
  35. </div>
  36. </div>
  37. </div>