diff --git a/docs/versions.rst b/docs/versions.rst index 4bfea8bbe..46c3419b3 100644 --- a/docs/versions.rst +++ b/docs/versions.rst @@ -6,6 +6,7 @@ Improvements and Bug fixes on 0.10.6 - (TODO) New, Support for multiple actions, included mass delete. - (TODO) New, PluginModule implementation. +- (TODO) New, extra_args property, for injecting extra arguments to templates. Improvements and Bug fixes on 0.10.5 ------------------------------------ diff --git a/flask_appbuilder/static/appbuilder/js/ab_actions.js b/flask_appbuilder/static/appbuilder/js/ab_actions.js new file mode 100644 index 000000000..0a8ade3b3 --- /dev/null +++ b/flask_appbuilder/static/appbuilder/js/ab_actions.js @@ -0,0 +1,7 @@ +var AdminActions = function() { + + $('.actions_check_all').click(function() { + alert("check all"); + }); + +}; diff --git a/flask_appbuilder/templates/appbuilder/general/model/list.html b/flask_appbuilder/templates/appbuilder/general/model/list.html index f4d9fb0f3..868c3f2d6 100644 --- a/flask_appbuilder/templates/appbuilder/general/model/list.html +++ b/flask_appbuilder/templates/appbuilder/general/model/list.html @@ -17,7 +17,6 @@ {% endblock %} {{ lib.panel_end() }} - {% endblock %} diff --git a/flask_appbuilder/templates/appbuilder/init.html b/flask_appbuilder/templates/appbuilder/init.html index 760474054..f35bc9b42 100644 --- a/flask_appbuilder/templates/appbuilder/init.html +++ b/flask_appbuilder/templates/appbuilder/init.html @@ -31,6 +31,7 @@ + {% endblock %}