Google App Engine webapp2 프레임 워크를 사용하여 제출 된 모든 입찰을 계산하고 수집하는 간단한 웹 사이트를 구축하고 있습니다. 나는 각 입찰마다 "책"이라는 데이터베이스에서 읽었습니다.Google App Engine에 대해 다른 데이터 값에 대해 다른 테이블을 만드는 방법
현재 제출 된 모든 입찰가에 대해 표시 할 테이블은 하나뿐입니다. jinja2를 사용하여 다른 IssueName에 대해 다른 테이블을 만들 수 있습니까?
예를 들어, IssueName = Bond1 인 경우 bond1에 대한 모든 입찰을 수집하는 표 1이 있습니다. IssueName = Bond2 인 경우 bond2에 대한 모든 입찰을 수집하는 테이블 2가 있습니다
<table class="table table-striped">
<thead>
<tr>
<th>IssueName</th>
<th>RM Name</th>
<th>Customer</th>
<th>Price</th>
<th>Notional</th>
<th>Bid Time</th>
</tr>
</thead>
{% for bid in Book %}
<tbody>
<tr>
<th>{{ bid.IssueName }}</th>
<th>{{ bid.RMName }}</th>
<th>{{ bid.CustomerName }}</th>
<th>{{ bid.BidPrice }}</th>
<th>{{ bid.Notional }}</th>
<th>{{ bid.BidTime }}</th>
</tr>
</tbody>
{% endfor %}
</table>