dashboard.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {% extends 'myapp/base.html' %}
  2. {% load static %}
  3. {% block msg %}
  4. {% if messages %}
  5. {% for message in messages %}
  6. <div {% if message.tags %} class="alert alert-{{message.tags}} alert-dismissible fade show" {% endif %}>
  7. <strong>{{message}}</strong>
  8. <button type="button" class="close" data-dismiss="alert" aria-label="Close">
  9. <span aria-hidden="true">&times;</span>
  10. </button>
  11. </div>
  12. {% endfor %}
  13. {% endif %}
  14. {% endblock msg %}
  15. {% block side %}
  16. <div class="col-sm-2 my-5 text-center">
  17. <h4 class="my-7">Profile</h4>
  18. <h5>{{full_name}}</h5>
  19. {% for group in groups %}
  20. <p>{{group.name}}</p>
  21. {% endfor %}
  22. </div>
  23. {% endblock side %}
  24. {% block content %}
  25. <div class="col-sm-10">
  26. <h3 class="text-dark my-5">Dashboard Page</h3>
  27. <a href="{% url 'addpost' %}" class="btn btn-success">Add Post</a>
  28. <h4 class="text-center alert alert-info mt-3">Show Post Information</h4>
  29. {% if posts %}
  30. <table class="table table-hover bg-white">
  31. <thead>
  32. <tr class="text-center">
  33. <th scope="col" style="width:2%">ID</th>
  34. <th scope="col" style="width:28%">Title</th>
  35. <th scope="col" style="width:55%">Description</th>
  36. <th scope="col" style="width:15%">Action</th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. {% for post in posts %}
  41. <tr>
  42. <th scope="row">{{post.id}}</th>
  43. <td>{{post.title}}</td>
  44. <td>{{post.desc}}</td>
  45. <td class="text-center">
  46. <a href="{% url 'updatepost' post.id %}" class="btn btn-warning btn-sm">Edit</a>
  47. {% if perms.myapp.delete_post %}
  48. <form action="{% url 'deletepost' post.id %}" method="post" class="d-inline">
  49. {% csrf_token %}
  50. <input type="submit" value="Delete" class="btn btn-danger btn-sm">
  51. </form>
  52. {% endif %}
  53. </td>
  54. </tr>
  55. {% endfor %}
  56. </tbody>
  57. </table>
  58. {% else %}
  59. <h4 class="text-center alert alert-warning">No Records</h4>
  60. {% endif %}
  61. </div>
  62. {% endblock content %}