【发布时间】:2016-10-04 04:29:26
【问题描述】:
我正在使用 django-tables2 和 django-bootstrap3 来呈现带有分页的表格。我想在与分页相同的行上添加一个按钮,但我的提交按钮显示在分页下方。我应该如何让按钮与分页链接在同一行的表格右下角对齐?
这是我的表格模板:
<div class="row">
<div class="col-md-12">
<form method='POST' action='{% url "playlists:add_track" %}'>{% csrf_token %}
{% render_table table "django_tables2/bootstrap3.html" %}
<button class="btn btn-primary" type="submit" name="action">Submit</button>
</form>
</div>
</div>
这是来自 tables2 应用的自定义 bootstrap3.html:
{% load querystring from django_tables2 %}
{% load trans blocktrans from i18n %}
{% load bootstrap3 %}
{% if table.page %}
<div class="table-responsive">
{% endif %}
{% block table %}
<table{% if table.attrs %} {{ table.attrs.as_html }}{% endif %}>
{% block table.thead %}
<thead>
<tr>
{% for column in table.columns %}
{% if column.orderable %}
<th {{ column.attrs.th.as_html }}><a href="{% querystring table.prefixed_order_by_field=column.order_by_alias.next %}">{{ column.header }}</a></th>
{% else %}
<th {{ column.attrs.th.as_html }}>{{ column.header }}</th>
{% endif %}
{% endfor %}
</tr>
</thead>
{% endblock table.thead %}
{% block table.tbody %}
<tbody>
{% for row in table.page.object_list|default:table.rows %} {# support pagination #}
{% block table.tbody.row %}
<tr class="{% cycle "odd" "even" %}">
{% for column, cell in row.items %}
<td {{ column.attrs.td.as_html }}>{{ cell }}</td>
{% endfor %}
</tr>
{% endblock table.tbody.row %}
{% empty %}
{% if table.empty_text %}
{% block table.tbody.empty_text %}
<tr><td colspan="{{ table.columns|length }}">{{ table.empty_text }}</td></tr>
{% endblock table.tbody.empty_text %}
{% endif %}
{% endfor %}
</tbody>
{% endblock table.tbody %}
{% block table.tfoot %}
<tfoot></tfoot>
{% endblock table.tfoot %}
</table>
{% endblock table %}
{% if table.page %}
{% block pagination %}
{% bootstrap_pagination table.page url=request.get_full_path %}
{#{ table.page|pagination }#}
{% endblock pagination %}
</div>
{% endif %}
【问题讨论】:
-
你用的是什么引导主题?
-
这个简单的石板主题bootswatch.com/slate
标签: python django twitter-bootstrap pagination