hyb
2025-07-04 fc13e132af2289eb285b4f0d37d76e5803c8b075
1
2
3
4
5
6
7
8
9
(function ($) {
    'use strict';
    $(function () {
        $('.cancel-link').click(function (e) {
            e.preventDefault();
            window.history.back();
        });
    });
})(django.jQuery);