shared.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <style>
  4. ul {
  5. list-style-type: none;
  6. float: left;
  7. }
  8. .href_link_button
  9. {
  10. float: right;
  11. }
  12. .list li {
  13. display:inline-block;
  14. vertical-align: middle;
  15. list-style-position: outside;
  16. list-style-type: disc;
  17. margin-right: 1em;
  18. text-align: left;
  19. white-space: nowrap;
  20. list-style-type: none;
  21. }
  22. .bull {
  23. display:list-item
  24. }
  25. </style>
  26. <div class="mx-auto text-center">
  27. <h1>Shared Hometab</h1>
  28. <div class="container">
  29. <div class="row">
  30. <div class="col-md-12 col-sm-12">
  31. <div class="section-title">
  32. <h1 class="heading bold">List of bookmarks you have created</h1>
  33. <hr>
  34. </div>
  35. </div>
  36. <!-- Code: Each Group of Box-->
  37. {% for bg, bml in bdic.items(): %}
  38. <div class="col-lg-4 col-md-4 col-sm-4">
  39. <div class="inner_box">
  40. <h3>{{ bg }}</h3>
  41. <hr>
  42. <!-- Code: Each Link in the Box-->
  43. {% for bm in bml: %}
  44. <ul class="list">
  45. <li><span class="bull">ICON {{ bm.name }} {{ bm.status }}</span></li>
  46. <li class="href_link_button">
  47. <a href="{{ bm.link }}">
  48. <img src="static/logo/link_logo.png"width="25" height="25">
  49. </a>
  50. <button type="submit">Edit</button>
  51. </li>
  52. </ul>
  53. {% endfor %}
  54. <!-- (End) Code: Each Link in the Box (End)-->
  55. <br>
  56. </div>
  57. </div>
  58. <!--(End) Code: Each Group of Box (End)-->
  59. {% endfor %}
  60. <div class="clearfix"></div>
  61. </div>
  62. <div class="clearfix"></div>
  63. </div>
  64. <div class="clearfix"></div>
  65. {% endblock %}
  66. </div>