/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
$.validator.setDefaults({
	submitHandler: function() {
        form.submit();
    }
});

$().ready(function() {
            // validate signup form on keyup and submit
            $("#id_presentation_form").validate({
                rules: {
                    ref: {
                        required: true
                    }
                },
                messages: {
                    ref: {
                        required: "Ce champ est obligatoire"
                    }
                }

            });
});



