Skip to content

Commit

Permalink
FIx issue #6.
Browse files Browse the repository at this point in the history
  • Loading branch information
onrik committed Feb 4, 2017
1 parent 5de0c19 commit 04f3dd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webshell/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 2, 2)
VERSION = (0, 2, 3)


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion webshell/templates/webshell/change_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
{% endif %}
{% endblock %}

<form {% if has_file_field %}enctype="multipart/form-data" {% endif %}action="{{ form_url }}" method="post" id="{{ opts.module_name }}_form">{% csrf_token %}{% block form_top %}{% endblock %}
<form {% if has_file_field %}enctype="multipart/form-data" {% endif %}action="{{ form_url }}" method="post" id="{{ opts.module_name }}_form" novalidate>{% csrf_token %}{% block form_top %}{% endblock %}
<div>
{% if is_popup %}<input type="hidden" name="_popup" value="1" />{% endif %}
{% block submit_buttons_top %}{% submit_row %}{% endblock %}
Expand Down

0 comments on commit 04f3dd9

Please sign in to comment.