Реализовано увеличение эскиза

This commit is contained in:
Anastasia
2015-07-11 20:16:36 +05:00
parent 37b0fe30d0
commit 3dc5d7f816
2 changed files with 8 additions and 3 deletions

View File

@@ -204,7 +204,7 @@ def sketches(request, order_id):
return render(request, 'asuzr/sketches.html', {
'order_id': order_id,
'sketch_list': sketch_list,
'title': 'Эскизы заказа %s' % curr_order})
'title': 'Эскизы заказа: %s' % curr_order})
def delete_sketch(request):
pk = request.GET.get('pk', -1)

View File

@@ -1,10 +1,15 @@
{% extends "asuzr/base.html" %}
{% load thumbnail %}
{% block page %}
<style>
#list li{
list-style-type: none; /* Прячем исходные маркеры */
}
</style>
{% if sketch_list %}
<ul>
<ul id = "list">
{% for sketch in sketch_list %}
<li> {% thumbnail sketch.sketch_file "200x200" crop="center" as im %} <img src = "{{ im.url }}"> {% endthumbnail %} </li>
<li> {% thumbnail sketch.sketch_file "200x200" crop="center" as im %} <a href = {{sketch.sketch_file.url}}> <img src = "{{ im.url }}"> </a>{% endthumbnail %} </li>
{% endfor %}
</ul>
{% endif %}