main.j2 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {% extends "layout/backend.j2" %}
  2. {% block content %}
  3. <h1>Votes</h1>
  4. <div class="row">
  5. <div class="col-sm">
  6. <div class="card">
  7. <div class="card-header">
  8. Votes
  9. <div class="float-right">
  10. <a href="{{ url_for('vote.create') }}" class="btn btn-secondary btn-sm">Create</a>
  11. </div>
  12. </div>
  13. <div class="card-body">
  14. <table class="table table-striped table-sm">
  15. <thead>
  16. <tr>
  17. <th></th>
  18. <th>Name</th>
  19. <th>Start</th>
  20. <th>End</th>
  21. <th>Priority</th>
  22. <th>Author</th>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. {% for ballot in ballots %}
  27. <tr>
  28. <td>
  29. <a href="{{ url_for('vote.view', ballot_id=ballot.id) }}"><button class="btn btn-secondary btn-sm">View</button></a>
  30. </td>
  31. <td>{{ ballot.name }}</td>
  32. <td>{{ ballot.start_at }}</td>
  33. <td>{{ ballot.end_at }}</td>
  34. <td>{{ ballot.priority.name }}</td>
  35. <td>{{ ballot.user.name }}</td>
  36. </tr>
  37. {%- endfor -%}
  38. </tbody>
  39. </table>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. {% endblock %}