0
をコラムへのリンクまたは任意のHTMLタグを追加し、私はこのように見ているジャンゴ - DataTableのビューを持っている:ジャンゴ - DataTableのビューで
class OrderListJson(BaseDatatableView):
model = Flat
columns = ['id', 'flat_price', 'flat_house.house_block.block_name']
order_columns = ['flat_price', 'flat_house.house_block.block_name']
max_display_length = 100
def filter_queryset(self, qs):
search = self.request.GET.get(u'search[value]', None)
if search:
qs = qs.filter(flat_price__lte=search)
return qs
<a>
またはその他のHTMLタグと'flat_house.adress'
をラップする方法は?たとえば、<a href="{% url 'id' %}"
です。今は、<td>
タグの列のデータのみを表示しています。
私のHTMLテンプレートは以下のようになります。
<table id="datatabletest" class="table table-striped table-bordered" cellspacing="0">
<thead>
<tr>
<th>id</th>
<th>price</th>
<th>adress</th>
</tr>
</thead>
<tfoot>
<tr>
<th>id</th>
<th>price</th>
<th>adress</th>
</tr>
</tfoot>
</table>