src/cm/templates/test_inner.html
author Simon Descarpentries <sid@sopinspace.com>
Thu, 13 Feb 2014 18:54:19 +0100
changeset 575 8ce80860c3fe
parent 0 40c8f766c9b8
permissions -rw-r--r--
Add the skeleton of the future comt test-suite

<form  id="test" class="wizard-form" action="." method="post">
{{ form }}

<input id="sub" name="continue" type="button" value="finish  →"/>

<script type="text/javascript">
    $(function() {
        $("#sub").click(function () {
        	var str = $("#test").serialize();
        	$.post("{% url test_inner %}", str,
        			  function(data, textStatus){
        		$(".ui-tabs-panel").not('.ui-tabs-hide').html(data);
        			  }, "html");
        });
    });
    </script>
</form>