I am trying to execute the onsubmit code in a form on my model template. But it's not running as I expect.
Could anyone see what is wrong? Isn't this form that is submited when Save [en-us] is pressed? ---------------------------------------------------------------------------- change_form.html ------------------------------- CODE-------------------------------------- {% extends "admin/base_site.html" %} {% load i18n admin_modify adminmedia %} {% block extrahead %}{{ block.super }} <script type="text/javascript" src="../../../jsi18n/"></script> <script type="text/javascript"> function confirmar(){ window.alert("Ha-ha"); //Only for test purpose if(window.confirm("Deseja modificar o Lacre do Computador em manutenção?")){ //pt-br things document.getElementById("{{ opts.module_name }}_form").submit(); window.location.href='../../computador/'; } </script> {{ media }} {% endblock %} {% block stylesheet %}{% admin_media_prefix %}css/forms.css{% endblock %} {% block coltype %}{% if ordered_objects %}colMS{% else %}colM{% endif %}{% endblock %} {% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} change-form{% endblock %} {% block breadcrumbs %}{% if not is_popup %} <div class="breadcrumbs"> <a href="../../../">{% trans "Home" %}</a> › <a href="../../">{{ app_label|capfirst|escape }}</a> › <a href="../">{{ opts.verbose_name_plural|capfirst }}</a> › {% if add %}{% trans "Add" %} {{ opts.verbose_name }}{% else %} {{ original|truncatewords:"18" }}{% endif %} </div> {% endif %}{% endblock %} {% block content %}<div id="content-main"> {% block object-tools %} {% if change %}{% if not is_popup %} <ul class="object-tools"><li><a href="history/" class="historylink">{% trans "History" %}</a></li> {% if has_absolute_url %}<li><a href="../../../r/ {{ content_type_id }}/{{ object_id }}/" class="viewsitelink">{% trans "View on site" %}</a></li>{% endif%} </ul> {% endif %}{% endif %} {% endblock %} <form {% if has_file_field %}enctype="multipart/form-data" {% endif %}action="{{ form_url }}" method="post" onSubmit="confirmar()" id="{{ opts.module_name }}_form">{% block form_top %}{% endblock %} <div> {% if is_popup %}<input type="hidden" name="_popup" value="1" />{% endif %} {% if save_on_top %}{% submit_row %}{% endif %} {% if errors %} <p class="errornote"> {% blocktrans count errors.items|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} </p> <ul class="errorlist">{% for error in adminform.form.non_field_errors %}<li>{{ error }}</li>{% endfor %}</ ul> {% endif %} {% for fieldset in adminform %} {% include "admin/includes/fieldset.html" %} {% endfor %} {% block after_field_sets %}{% endblock %} {% for inline_admin_formset in inline_admin_formsets %} {% include inline_admin_formset.opts.template %} {% endfor %} {% block after_related_objects %}{% endblock %} {% submit_row %} {% if add %} <script type="text/ javascript">document.getElementById("{{ adminform.first_field.auto_id }}").focus();</ script> {% endif %} {# JavaScript for prepopulated fields #} {% prepopulated_fields_js %} </div> </form></div> {% endblock %} ---------------------------END-CODE----------------------------------- PS.: The path to this modified template is right, and working. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---