Skip to content

Commit

Permalink
fix: add a panel body to panel_begin/panel_end macros (#1377)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch authored May 24, 2020
1 parent 6e77920 commit ce6caa2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flask_appbuilder/templates/appbuilder/general/lib.html
Original file line number Diff line number Diff line change
Expand Up @@ -259,10 +259,12 @@
{% macro panel_begin(title, extra_class="") %}
<div class="panel panel-primary {{ extra_class }}">
<div class="panel-heading">
<h4 class="panel-title">{{title}}</h4>
<h4 class="panel-title">{{title}}</h4>
</div>
<div class="panel-body">
{% endmacro %}
{% macro panel_end() %}
</div>
</div>
{% endmacro %}

Expand Down

0 comments on commit ce6caa2

Please sign in to comment.