Advertisement
Guest User

all.html

a guest
Jan 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. {% extends "forum/base.html" %}
  2.  
  3. {% block title %} All {% endblock title %}
  4. {% block content %}
  5. <form action="/topics/add?next={{ request.path }}" class="navbar-form navbar-left" method="POST">
  6. <div class="form-group">
  7. <input type="text" class="form-control" placeholder="Title" name="title">
  8. </div>
  9. {% csrf_token %}
  10. <button type="submit" class="btn btn-default">Add</button>
  11. </form>
  12. <table class="table table-compact table-hover">
  13. <thead>
  14. <tr>
  15. <th>Topic</th>
  16. <th>Author</th>
  17. <th>Operations</th>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. {% for topic in topics %}
  22. <tr>
  23. <td>{{ topic.title }}</td>
  24. <td> unknown </td>
  25. <td> <a href="/topics/{{topic.id}}/delete?next={{request.path}}">
  26. <span class="glyphicon glyphicon-trash text-danger" aria-hidden="true">
  27. </span>
  28. </a>
  29. </tr>
  30. {% endfor %}
  31. </tbody>
  32. </table>
  33. {% endblock content %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement