admin.py:
Код: Выделить всё
class TestAdmin(nested_admin.nested.NestedModelAdmin, tabbed_admin.TabbedModelAdmin):
class Media:
js = ("admin/js/vendor/jquery/jquery.js", "admin/js/jquery.init.js", "js/testChangeForm.js")
tab_overview = (
(None, {
'fields': ('name', 'domain', 'visible')
}),
QuestionAdminInline
)
tabs = [
('Test content', tab_overview),
]
Код: Выделить всё
window.addEventListener("load", function () {
if (!$) {
$ = django.jQuery;
}
console.log($("#domain").val())
});
Код: Выделить всё
change_form.html
Подробнее здесь: https://stackoverflow.com/questions/653 ... ge-form-ht