Move default template for tables out of template into table base class
[ganeti_webmgr.git] / ganeti_web / templates / list_base.html
blob8c09682f49a8f99ca860cd9c1d0f5f692146bccd
1 {% extends "menu_base.html" %}
2 {% load django_tables2 %}
4 {% block title %}{% endblock %}
6 {% block content %}
7 <div class="header">
8 <h1 class="breadcrumb">{% block breadcrumb %}{% endblock %}</h1>
9 {% block action_button %}
10 {% endblock %}
11 </div>
13 {% render_table table %}
14 {% endblock %}