diff options
Diffstat (limited to 'ishtar_common/templates/ishtar/organization_form.html')
-rw-r--r-- | ishtar_common/templates/ishtar/organization_form.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ishtar_common/templates/ishtar/organization_form.html b/ishtar_common/templates/ishtar/organization_form.html index 828023908..7f6e2725b 100644 --- a/ishtar_common/templates/ishtar/organization_form.html +++ b/ishtar_common/templates/ishtar/organization_form.html @@ -1,9 +1,9 @@ -{% load i18n %} +{% load i18n l10n %} <div id='orga-form'> <form id='dyn-form-organization' method='post'> {% csrf_token %} {% for hidden in form.hidden_fields %}{{hidden}}{% endfor %} -<input type='hidden' name='hidden_organization_pk' id='hidden_organization_pk' value='{{object.pk}}'/> +<input type='hidden' name='hidden_organization_pk' id='hidden_organization_pk' value='{{object.pk|unlocalize}}'/> <input type='hidden' name='hidden_organization_lbl' id='hidden_organization_lbl' value="{{object}}"/> <table class='organization'> <tr> @@ -41,7 +41,7 @@ </div> </form> </div> -<script type="text/javascript"><!--// +<script type="text/javascript">{% localize off %} function checkPendingRequest(todo) { window.setTimeout(function () { @@ -132,4 +132,4 @@ $(function() { }); -//--></script> +{% endlocalize %}</script> |