{% extends "freeadmin/generic_form.html" %}
{% block form %}
{% blocktrans with plugin=plugin.name %}Are you sure you want to update "{{ plugin }}" plugin?{% endblocktrans %}
{% endblock %}
{% block onSubmit %}
doSubmit({
form: this,
event: e,
url: '{% block formpost %}{{ request.path }}{% endblock %}',
progressbar: {
steps: [
{"label": "Downloading plugin"},
{"label": "Updating plugin"},
],
poolUrl: '{% url "plugins_update_progress" %}',
fileUpload: false
}
});
{% endblock %}