Advertisement
Guest User

Untitled

a guest
Feb 11th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.93 KB | None | 0 0
  1. {% if documents %}
  2. <div class="row">
  3. {% for document in documents %}
  4.     <div class="item-container   col-lg-4 ">
  5.  
  6.  
  7.         <div   id = "daq" class="card" >
  8.           <img class="card-img-top" width="300" height="300" src="{{ document.docfile.url }}">
  9.           <div class="card-body">
  10.             <h5 class="card-title">Card title</h5>
  11.             <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
  12.  
  13.               {% for tag in document.search_tags.all %}
  14.                         <a href="{{tag.get_absolute_url}}">{{  tag.title }}</a>
  15.                     {% endfor %}
  16.               <a href="#" class="btn btn-primary">Go somewhere</a>
  17.           </div>
  18.         </div>
  19.  
  20.     </div>
  21.   {% if forloop.counter|divisibleby:3 %}
  22. </div>
  23. <div class="row">
  24.   {% endif %}
  25. {% endfor %}
  26. </div>
  27. {% else %}
  28. <div class="nothing-found">
  29.     Nothing found.
  30. </div>
  31. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement