Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% if documents %}
- <div class="row">
- {% for document in documents %}
- <div class="item-container col-lg-4 ">
- <div id = "daq" class="card" >
- <img class="card-img-top" width="300" height="300" src="{{ document.docfile.url }}">
- <div class="card-body">
- <h5 class="card-title">Card title</h5>
- <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>
- {% for tag in document.search_tags.all %}
- <a href="{{tag.get_absolute_url}}">{{ tag.title }}</a>
- {% endfor %}
- <a href="#" class="btn btn-primary">Go somewhere</a>
- </div>
- </div>
- </div>
- {% if forloop.counter|divisibleby:3 %}
- </div>
- <div class="row">
- {% endif %}
- {% endfor %}
- </div>
- {% else %}
- <div class="nothing-found">
- Nothing found.
- </div>
- {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement