This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/opencase_reporting/templates/block--opencase-reporting-p...

12 lines
454 B
Twig

<select id="opencase_reporting_new">
<option disabled selected>Start a new report</option>
<option value="/opencase/reporting/actors">Actor based</option>
<option value="/opencase/reporting/cases">Case based</option>
</select>
<select id="opencase_reporting_presets_load">
<option disabled selected>Load a preset</option>
{% for preset in presets %}
<option value={{ preset.url }}>{{ preset.title }}</option>
{% endfor %}
</select>