Skip to content

Commit

Permalink
adding partnerships activated
Browse files Browse the repository at this point in the history
  • Loading branch information
Ederporto committed Feb 8, 2024
1 parent 726c6fb commit 2f744e2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions report/templates/report/quantitative.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@
<textarea id="organizers" name="organizers_string" rows="4">{% if report_form.instance.id %}{% for organizer in report_form.instance.organizers.all %}{{ organizer.name }}{% for institution in organizer.institution.all %};{{ institution.name }}{% endfor %}{% if not forloop.last %}&#13;&#10;{% endif %}{% endfor %}{% endif %}</textarea>
</div>
</div>
<div class="w3-row">
<label class="w3-third formfieldtitle" for="partners_activated">{% translate "Partnerships activated" %}</label>
<div class="w3-twothird formfield">
<select class="select-with-text" id="partners_activated" name="partners_activated" multiple>
{% for partner in report_form.fields.partners_activated.queryset %}
<option value="{{ partner.id }}" {% if partner in report_form.instance.partners_activated.all %}selected{% endif %}>{{ partner.name }}</option>
{% endfor %}
</select>
</div>
</div>
<div class="w3-row">
<label class="w3-third formfieldtitle" for="technologies_used">{% translate "Technologies used" %}</label>
<div class="w3-twothird formfield">
Expand Down

0 comments on commit 2f744e2

Please sign in to comment.