-
Shraddha Raghuram authoredShraddha Raghuram authored
attributions.html 3.31 KiB
{% extends "layout.html" %}
{% block title %}Attributions{% endblock %}
{% block lead %}In the iGEM Competition, we celebrate student effort and achievement. The Attributions form helps the judges differentiate between what students accomplished from how their external collaborators supported them. Therefore, teams must clearly explain on the standard Project Attributions form what work they have conducted by themselves and what has been done by others.{% endblock %}
{% block page_content %}
<!-- <div class="row mt-4">
<div class="col">
<div>
<p>Teams must use the standard Attributions form. To meet the attributions requirement, you must display the standard form on your Wiki by following the instructions here: <a href="https://competition.igem.org/deliverables/project-attribution">Project Attribution page</a>. </p>
</div>
<div class="bd-callout bd-callout-info">
<h4>Bronze Medal Criterion #2</h4>
<p>Describe what work your team members did and what other people did for your project.</p>
<p>The form that has been embedded in an iframe in this page shows your team's Project Attribution form. This page must keep the form as it is.</p>
<p>If you use a different website framework, make sure to embed the right URL for your team's form.</p>
</div>
</div>
</div> -->
<!--
======================================================================
== VERY IMPORTANT ==
======================================================================
LEAVE THE IFRAME CODE BELOW AS IT IS, THE ATTRIBUTION FORM OF YOUR TEAM
WILL BE DISPLAYED ON THIS PAGE. DO NOT REMOVE IT, OTHERWISE YOU RISK OF
NOT MEETING BRONZE MEDAL CRITERION #2
-->
<div class="roster-bg-image"></div>
<div style="margin-top:20vh;margin-left:min(100px,5vw);margin-right:min(100px,5vw);margin-bottom:min(80px,15vh);"></div>
<span style="font-family:SourceSansPro;font-size:9vw;font-weight:600;color:#185A4F;">Project Attributions Form</span>
</div>
<div class="attr-pagecontainer">
<script type="text/javascript">
// Listen to size change and update form height
window.addEventListener("message", function (e) {
if (e.origin === "https://teams.igem.org") {
const {type, data} = JSON.parse(e.data);
if (type === "igem-attribution-form") {
const element = document.getElementById("igem-attribution-form");
element.style.height = `${data + 100}px`;
}
}
});
</script>
<iframe
style='width: 100%'
id="igem-attribution-form"
src="https://teams.igem.org/wiki/5054/attributions">
>
</iframe>
</div>
<!-- <div class="row mt-4">
<script type="text/javascript">
// Listen to size change and update form height
window.addEventListener("message", function (e) {
if (e.origin === "https://teams.igem.org") {
const {type, data} = JSON.parse(e.data);
if (type === "igem-attribution-form") {
const element = document.getElementById("igem-attribution-form");
element.style.height = `${data + 100}px`;
}
}
});
</script>
<iframe
style='width: 100%'
id="igem-attribution-form"
src="https://teams.igem.org/wiki/5054/attributions">
>
</iframe>
<!-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -->
</div> -->
{% endblock %}