0

コードがわかりにくい、djangoテンプレートでページネーションを使いたい。

views.py で何をしますか?? 設定で何をしますか、py ??

テンプレートは:-

<div id="contentwrapper">
                <div class="main_content">
                        <div class="row-fluid">
                <div class="span12">
                      <h3 class="heading">Application View</h3>
                        <div class="row-fluid">

                            <table class="table table-striped table-bordered mediaTable">
                                <thead><tr><th>App Id</th><th>Job Title</th><th>oDesk Id</th><th>Client Spent</th><th>Job Type</th><th>Notes</th><th colspan=2>Action</th></tr>
</thead>
<tbody>
{% for i in getvalue %}
 <tr>

<td>{{ i.app_id }}</td>
<td>{{ i.job_title }}</td>
<td>{{ i.odesk_id }}</td>
<td>{{ i.client_spent }}</td>
<td>{{ i.job_type }}</td>
<td>{{ i.notes_type }}</td>
<td><a href="/interview/?id={{i.app_id}}&oid={{i.odesk_id}}" title="Interview"><i class="splashy-document_letter_okay"></i></a></td>

<td><a href="/del/?id={{i.app_id}}" title="Remove"><i class="splashy-document_letter_remove"></i></a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
4

2 に答える 2

0

django のデフォルトのページング オプション look... を使用できます。

https://docs.djangoproject.com/en/dev/topics/pagination/

于 2013-09-13T05:24:12.943 に答える