blob: 2823c1bae3e5e93914bf1126e592fdd7f0782e23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<p>{%trans "Item successfully saved"%}</p>
{% if redirect or wizard_done_window %}
<script type='text/javascript' language='javascript'>
{% if redirect %}
window.location.href = "{{redirect}}";
{% endif %}
{% if wizard_done_window %}
$(function(){ load_window("{{wizard_done_window}}{{item.pk}}/"); });
{% endif %}
</script>
{% endif %}
{% endblock %}
|