imagehost/imagehosting/templates/imagehosting/all.html
2018-03-27 22:41:25 +03:00

14 lines
377 B
HTML

{% extends 'imagehosting/base.html' %}
{% load static %}
{% block content%}
<div class="images">
{% for image in all %}<a href="{% url 'image_detail' pk=image.pk %}" ><img src= "/media/images{{image.thumb_name }}"></a>{% endfor %}
</div>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script>
</script>
{% endblock content %}