djangoで明細行を表示していますが2行で1明細としてボタンが一つ
ある一覧を作成したいのです。
django
1{% block content %} 2<div> 3 <ul class="nav nav-tabs" role="tablist"> 4 {% if active_tab == 'same_in' %} 5 <li role="presentation" class="nav-item active"><a href="#same_in" class="nav-link" aria-controls="profile" role="tab" data-toggle="tab">タブ</a></li> 6 </ul> 7 <div class="tab-content"> 8 <!--1 --> 9 {% if active_tab == 'same_in' %} 10 <div role="tabpanel" class="tab-pane list_tab-pane table-responsive active" id="same_in"> 11 {% endif %} 12 <h1>結果</h1> 13 <form action="/url/rssult.html" method="POST"> 14 {% csrf_token %} 15 <div class="form-group row"> 16 <table class="table table-striped search_datatable small-table"> 17 <thead> 18 <th></th> 19 <th>ID</th> 20 </thead> 21 <tbody> 22 {% for set_id in queryset_id %} 23 <tr> 24 <td></td> 25 <td class="text-nowrap">{{set_id.info1.id}}</td> 26 <td class="text-nowrap"><button type="button" id="1" class="btn btn-light btn-custom-light" onclick="location.href='{% url 'url:edit_result' '1' %}'">編集</button></td> 27 </tr> 28 <div>{{ article.content|linebreaks }}</div> 29 <tr> 30 <td></td> 31 <td class="text-nowrap">{{set_id.info2.id}}</td> 32 <td class="text-nowrap"><button type="button" id="1" class="btn btn-light btn-custom-light" onclick="location.href='{% url 'url:edit_result' '1' %}'">編集</button></td> 33 </tr> 34 {% endfor %} 35 </tbody> 36 </table> 37 </div> 38 </form> 39 </div> 40 </div> 41</div> 42 43{% endblock %} 44
現在、1行1明細になりますが2行で1明細としたいです。
よろしくおねがいします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。