Skip to content

Commit e9b86ae

Browse files
committed
new release
1 parent 9e71585 commit e9b86ae

3 files changed

Lines changed: 3 additions & 14 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="django-streamfield",
8-
version="1.1.2",
8+
version="1.1.3",
99
author="Yury Lapshinov",
1010
author_email="y.raagin@gmail.com",
1111
description="StreamField for native Django Admin or with Grappelli",

streamfield/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
name = "streamfield"
2-
VERSION = '1.1.2'
2+
VERSION = '1.1.3'

streamfield/templates/streamfield/admin/change_form.html

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "admin/change_form.html" %}{% load admin_static i18n admin_modify admin_urls %}
1+
{% extends "admin/change_form.html" %}{% load static i18n admin_modify admin_urls %}
22

33
{% block content %}
44
<form {% if has_file_field %}enctype="multipart/form-data" {% endif %}action="{{ form_url }}" method="post" id="{{ opts.model_name }}_form" novalidate>{% csrf_token %}{% block form_top %}{% endblock %}
@@ -48,14 +48,3 @@
4848
</form>
4949
{% endblock %}
5050

51-
52-
<!-- Popup Hidden Field -->
53-
{% if is_popup %}<input type="hidden" name="_popup" value="1" />{% endif %}
54-
55-
<!-- !!! START:StreamField Popup Hidden Field !!! -->
56-
{% if request.GET.block_id and is_popup %}<input type="hidden" name="block_id" value="{{ request.GET.block_id }}" />{% endif %}
57-
{% if request.GET.instance_id and is_popup %}<input type="hidden" name="instance_id" value="{{ request.GET.instance_id }}" />{% endif %}
58-
{% if request.GET.app_id and is_popup %}<input type="hidden" name="app_id" value="{{ request.GET.app_id }}" />{% endif %}
59-
<!-- !!! END: StreamField Popup Hidden Field !!! -->
60-
61-

0 commit comments

Comments
 (0)