Gt
Size: a a a
Gt
AG
KV
AG
Gt
Gt
O
Gt
Gt
Gt
Gt
AG
{{ ... }}
выводи)Gt
<div class="form-group row align-items-top">
<label class="col-7 col-md-3 col-form-label">Биоматериал:</label>
{% for item in analysis %}
<div class="col-12 xs-mt-2 col-md-9">{{ analysis_item.biomaterial.all }} </div>
{% endfor %}
</div>
Gt
AG
analysis_item.biomaterial.all
нужен вложенный {% for ... %}{% endfor %}Gt
analysis_item.biomaterial.all
нужен вложенный {% for ... %}{% endfor %}Gt
{% for analysis_item.biomaterial.all %}
{% endfor %} типа такого?AG
{% for item in analysis %}
<div class="col-12 xs-mt-2 col-md-9">
{% for bio_item in analysis_item.biomaterial.all %}
{{ bio_item }}
{% endfor %}
</div>
{% endfor %}
Gt
Gt