62 lines
3.0 KiB
HTML
62 lines
3.0 KiB
HTML
<style>
|
|
.soe-feedback.form {
|
|
min-width: 60vw;
|
|
}
|
|
.soe-feedback.form label {
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
<div class="soe-feedback form">
|
|
|
|
<div>
|
|
<label xsmall>Funding source</label>
|
|
<select eicselect name="fundingSource" data-path="" multiple class="required" placeholder="Please select funding source(s)">
|
|
${app.meta.toOptions(app.meta.getCollection('soe-fundings'), null, true).map(o => o.outerHTML).join('')}
|
|
</select>
|
|
<input eicinput name="fundingSourceOther" data-path="" type="text" class="" value="" placeholder="please specify source" />
|
|
</div>
|
|
<div class="cols-3">
|
|
<div>
|
|
<label xsmall>Start date of financial support</label>
|
|
<input eicinput name="cutoffDate" data-path="" type="date" value="" class="required" placeholder="" />
|
|
</div>
|
|
<div>
|
|
<label xsmall>Funding amount</label>
|
|
<input eicinput name="fundingAmount" data-path="" data-type="number" min="0" type="currency" value="" placeholder="Leave blank if no funding applies" />
|
|
</div>
|
|
<div>
|
|
<label xsmall>Duration (in month) of the financial support</label>
|
|
<input eicinput name="duration" data-path="" data-type="number" min="0" type="number" value="" class="required" placeholder="" />
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<label xsmall>Additional Details</label>
|
|
<ul bulleted xsmall>
|
|
<li>Name and status of the support scheme/programme (e.g. open, closed, continuously open), overall call budget</li>
|
|
<li>Co-funding rate (e.g. lower or the same as Horizon Europe)</li>
|
|
<li>Use of GBER Article 25a (applicable state aid rules for projects awarded Seal of Excellence)</li>
|
|
<li>Do you support the investment component of the project</li>
|
|
</ul>
|
|
<textarea eictextarea name="additionalDetails" data-path="" class="" placeholder="(optional)"></textarea>
|
|
</div>
|
|
<div>
|
|
<label xsmall>Is this SoE a success story?</label>
|
|
<ul bulleted xsmall>
|
|
<li>Do you consider the project to have a high innovative potential or technological impact</li>
|
|
<li>Project attracts additional investments (e.g. private VC, winner of an innovation prize or other grant/subsidy)</li>
|
|
</ul>
|
|
<div class="cols-3">
|
|
<select eicselect name="successStory" data-path="" class="required" data-type="boolean" placeholder="" >
|
|
<option value=""></option>
|
|
<option value="true">yes</option>
|
|
<option value="false">no</option>
|
|
</select>
|
|
</div>
|
|
|
|
<textarea eictextarea name="successStoryDetails" data-path="" class="required" placeholder="Explain why"></textarea>
|
|
</div>
|
|
<div eicalert danger class="confirmation">
|
|
<input eiccheckbox type="checkbox" name="confirmDelete" data-type="ignore" label="Yes, I want to remove this feedback" />
|
|
</div>
|
|
</div> |