_base.html 458 B

1234567891011121314151617
  1. <!-- begin {{ panel_class|default:"panel" }} -->
  2. <div class="card">
  3. {% if title or actions %}
  4. <h2 class="card-header">
  5. {{ title|default:"" }}
  6. {% if actions %}
  7. <div class="card-actions">
  8. {% for action in actions %}
  9. {% render action %}
  10. {% endfor %}
  11. </div>
  12. {% endif %}
  13. </h2>
  14. {% endif %}
  15. {% block panel_content %}{% endblock %}
  16. </div>
  17. <!-- end {{ panel_class|default:"panel" }} -->