Skip to content
Snippets Groups Projects
Commit 0eec496b authored by Fabio Maschi's avatar Fabio Maschi
Browse files

2023 release

parent 2316c8c7
No related branches found
No related tags found
No related merge requests found
Showing
with 71 additions and 235 deletions
......@@ -29,7 +29,6 @@ The static assets are in the `static` directory. The layout and templates are in
|__ footer.html -> Footer that will appear in all the pages
|__ layout.html -> Main layout of your wiki. All the pages will follow its structure
|__ menu.html -> Menu that will appear in all the pages
|__ wiki-tools.html -> Wiki tools to help getting started with this template
|__ pages/ -> Directory for all the pages
|__ *.html -> Actual pages of your wiki
|__ .gitignore -> Tells GitLab which files/directories should not be uploaded to the repository
......@@ -49,14 +48,15 @@ The static assets are in the `static` directory. The layout and templates are in
### Building locally (advanced users)
To work locally with this project, you'll have to follow the steps below:
To work locally with this project, follow the steps below:
#### Install
```bash
git clone https://gitlab.igem.org/templates/wiki-frozen-flask
cd example
git clone https://gitlab.igem.org/templates/wiki-frozen-flask.git
cd wiki-frozen-flask
python3 -m venv venv
. venv/bin/activate
. venv/bin/activate # on Linux, MacOS; or
. venv\Scripts\activate # on Windows
pip install -r dependencies.txt
```
......
......@@ -23,8 +23,8 @@ def serve():
freezer.run()
@app.route('/')
def index():
return render_template('pages/index.html')
def home():
return render_template('pages/home.html')
@app.route('/<page>')
def pages(page):
......
body { padding-top: 56px; }
.left-aligned { margin-left: auto; }
.bg-dark { background-color: #343a40 !important; }
.bg-hero { background-color: #7952b3; }
.bg-hero { background-color: #45b06cff; }
/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
......
......@@ -27,7 +27,7 @@
<!-- The following MUST be on every page: license information and link to the repository on gitlab.igem.org -->
<div class="row mt-4">
<div class="col">
<p class="mb-0"><small>© 2022 - Content on this site is licensed under a <a class="subfoot" href="https://creativecommons.org/licenses/by/4.0/" rel="license">Creative Commons Attribution 4.0 International license</a>.</small></p>
<p class="mb-0"><small>© 2023 - Content on this site is licensed under a <a class="subfoot" href="https://creativecommons.org/licenses/by/4.0/" rel="license">Creative Commons Attribution 4.0 International license</a>.</small></p>
<p><small>The repository used to create this website is available at <a href="https://gitlab.igem.org/templates/wiki-frozen-flask">gitlab.igem.org/templates/wiki-frozen-flask</a>.</small></p>
</div>
</div>
......
......@@ -13,7 +13,7 @@
<!-- Custom CSS -->
<link href="{{ url_for('static', filename = 'style.css') }}" rel="stylesheet">
<title>{% block title %}{% endblock %} | TeamName - iGEM 2022</title>
<title>{% block title %}{% endblock %} | TeamName - iGEM 2023</title>
</head>
<body>
......@@ -40,9 +40,6 @@
<!-- Footer: MUST mention license AND have a link to team wiki's repository on gitlab.igem.org -->
{% include 'footer.html' %}
<!-- Wiki Tools: Teams are allowed to remove it -->
{% include 'wiki-tools.html' %}
<!-- Bootstrap Bundle with Popper -->
<script src="{{ url_for('static', filename = 'bootstrap.bundle.min.js') }}"></script>
</body>
......
......@@ -14,7 +14,7 @@
<!---- HOME ---->
<li class="nav-item">
<a class="nav-link" href="{{ url_for('index') }}">Home</a>
<a class="nav-link" href="{{ url_for('home') }}">Home</a>
</li>
<!---- TEAM ---->
......@@ -25,7 +25,6 @@
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="{{ url_for('pages', page='team') }}">Team</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='attributions') }}">Attributions</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='collaborations') }}">Collaborations</a></li>
</ul>
</li>
......@@ -35,31 +34,15 @@
Project
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="{{ url_for('pages', page='communication') }}">Communication</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='contribution') }}">Contribution</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='description') }}">Description</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='engineering') }}">Engineering</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='experiments') }}">Experiments</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='implementation') }}">Implementation</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='notebook') }}">Notebook</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='partnership') }}">Partnership</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='proof-of-concept') }}">Proof of Concept</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='results') }}">Results</a></li>
</ul>
</li>
<!---- PARTS ---->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Parts
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="{{ url_for('pages', page='part-collection') }}">Part Collection</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='parts') }}">Parts</a></li>
<li><a class="dropdown-item" href="{{ url_for('pages', page='improve') }}">Improve</a></li>
</ul>
</li>
<!---- SAFETY ---->
<li class="nav-item">
<a class="nav-link" href="{{ url_for('pages', page='safety') }}">Safety</a>
......
{% extends "layout.html" %}
{% block title %}Attributions{% endblock %}
{% block lead %}Use this page to attribute work done on your project. This includes the work done by each of the student members on your team and any work that was done by people outside of your team, including the host labs, advisors, instructors, and individuals not on the team roster. This requirement is not about literature references - these can and should be displayed throughout your wiki.{% endblock %}
{% block lead %}This page must show the attribution form of your project. This includes the work done by each of the student members on your team and any work that was done by people outside of your team, including the host labs, advisors, instructors, and individuals not on the team roster. This requirement is not about literature references - these can and should be displayed throughout your wiki.{% endblock %}
{% block page_content %}
......@@ -10,78 +10,41 @@
<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 bas been embded 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>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/deliverables/project-attribution">Project Attribution page</a> for more information.</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="row mt-4">
<div class="col-lg-8">
<h2>What should this page contain?</h2>
<hr>
<ul>
<li>Clearly state what each member of the team accomplished. We have provided some recommended categories below. Your team may also have other categories you can include.</li>
<ul>
<li><strong>Analysis:</strong> analyzing data generated by your team, another iGEM team (current or previous), and/or from literature as needed for your project</li>
<li><strong>Conceptualization:</strong> brainstorming and developing ideas for the project</li>
<li><strong>Investigation:</strong> performing the experiments and/or collecting data/evidence </li>
<li><strong>Lab Maintenance:</strong> cleaning, organizing, and preparing the research facilities or lab </li>
<li><strong>Fundraising:</strong> raising money, in-kind donations of materials, and/or services for the team’s activities</li>
<li><strong>Public Engagement:</strong> preparing and/or implementing tools/activities to engage the broader community </li>
<li><strong>Entrepreneurship:</strong> developing business models and other commercially relevant materials or activities</li>
<li><strong>Background Research:</strong> reading peer-reviewed scientific research articles, white papers, regulations/guidelines, and other documents</li>
<li><strong>Data Curation:</strong> annotating (producing metadata), cleaning, and maintaining research data for your team's project and for future use by other iGEM teams or members of the synthetic biology community</li>
<li><strong>Software:</strong> developing, implementing, and/or testing computer programs and code</li>
<li><strong>Hardware:</strong> designing, building, and/or testing mechanical, electrical, or optical hardware systems</li>
<li><strong>Project Administration:</strong> managing and coordinating the project activities, planning, and execution</li>
<li><strong>Visualization:</strong> preparation, creation and/or presentation of the work including data visualization, user interfaces, videos and other graphics</li>
<li><strong>Writing:</strong> writing, reviewing or editing content for the wiki or other documents to be shared outside the team</li>
<li><strong>Safety:</strong> performing activities to ensure compliance with the safety guidelines or requirements of iGEM, your institution, and/or government</li>
</ul>
<li>Clearly state who provided the student team members with:</li>
<ul>
<li>General support</li>
<li>Project support and advice</li>
<li>Fundraising help and advice</li>
<li>Lab support</li>
<li>Difficult technique support</li>
<li>Project advisor support</li>
<li>Wiki support</li>
<li>Presentation coaching</li>
<li>Human Practices support</li>
</ul>
<li>Thanks and acknowledgements for all other people involved in helping make your team successful
<li>Literature references: we encourage you to display literature references throughout your entire wiki
</ul>
</div>
<div class="col-lg-4">
<h2>Inspiration</h2>
<hr>
<ul>
<li><a href="https://2019.igem.org/Team:William_and_Mary/Attributions">2019 William and Mary</a></li>
<li><a href="https://2019.igem.org/Team:Thessaloniki/Attributions">2019 Thessaloniki </a></li>
<li><a href="https://2019.igem.org/Team:Sydney_Australia/Attributions">2019 Sydney Australia </a></li>
<li><a href="https://2020.igem.org/Team:AUC-EGYPT/Attributions">2020 AUC EGYPT</a></li>
<li><a href="https://2020.igem.org/Team:Korea-SIS/Attributions">2020 Korea SIS</a></li>
<li><a href="https://2020.igem.org/Team:Manchester/Attributions">2020 Manchester</a></li>
<li><a href="https://2020.igem.org/Team:NJTech_China/Attributions">2020 NJTech China</a></li>
</ul>
</div>
</div>
<script type="text/javascript">
// Listen to size change and update form height
window.addEventListener('message', function (e) {
const {type, data} = JSON.parse(e.data);
if (type === 'igem-attribution-form') {
const element = document.getElementById('igem-attribution-form')
element.style.height = data + 50 +'px'
}
});
</script>
<iframe
style='width: 100%'
id="igem-attribution-form"
src="https://attributions.igem.org?team=Example&year=2023"
>
</iframe>
<!-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -->
<div class="row mt-4">
<div class="col-lg-6">
<h2>Why is this page needed?</h2>
<hr>
<p>The Attribution requirement helps the judges know what you did yourselves and what you had help with. You can get help with difficult or complex techniques, but you must report what work your team did and what work was done by others.</p>
<p>For example, you might choose to work with an animal model during your project. Working with animals requires getting a license and applying far in advance to conduct certain experiments in many countries. This is difficult to achieve during the course of a summer, but much easier if you can work with a postdoc or PI who has the right licenses.</p>
</div>
<div class="col-lg-6">
<h2>Can we base our project on a previous one?</h2>
<hr>
<p>Yes! You can have a project based on a previous team, or based on someone else's idea, <b>as long as you state this fact very clearly and give credit for the original project.</b></p>
</div>
</div>
{% endblock %}
{% extends "layout.html" %}
{% block title %}Collaborations{% endblock %}
{% block lead %}Sharing and collaboration are core values of iGEM. We encourage you to reach out and work with other teams on difficult problems that you can more easily solve together.{% endblock %}
{% block page_content %}
<div class="row mt-4">
<div class="col">
<div class="bd-callout bd-callout-info">
<h4>Silver Medal Criterion #2</h4>
<p>Collaborate with one (or more) 2022 iGEM team(s) in a meaningful way.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-lg-6">
<h2>Which teams can we work with?</h2>
<hr>
<p>You can work with any other iGEM 2022 team in the competition. You can also work with non-iGEM research groups, but they do not count towards the iGEM team collaboration silver medal criterion.</p>
</div>
<div class="col-lg-6">
<h2>Some suggestions</h2>
<hr>
<ul>
<li>Improve the function of another team's BioBrick Part or Device</li>
<li>Characterize another team's part</li>
<li>Debug a construct</li>
<li>Model or simulate another team's system</li>
<li>Test another team's software</li>
<li>Help build and test another team's hardware project</li>
</ul>
</div>
</div>
{% endblock %}
{% extends "layout.html" %}
{% block title %}Communication{% endblock %}
{% block lead %}Develop and implement education, science communication, and/or outreach materials related to synthetic biology.{% endblock %}
{% block page_content %}
<div class="row mt-4">
<div class="col">
<div class="bd-callout bd-callout-info">
<h4>Gold Medal Criterion #6: Education & Communication</h4>
<p>Develop and implement education, science communication, and/or outreach materials related to synthetic biology.<p>
<p>All activities must follow Safety policies for <a href="https://responsibility.igem.org/safety-policies/human-subjects">Human Subjects Research</a>.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
</div>
</div>
</div>
{% endblock %}
\ No newline at end of file
......@@ -12,7 +12,7 @@
<p>Make a useful contribution for future iGEM teams. Use this page to document that contribution.<p>
<p>If you are making a contribution by adding information to an existing Part or creating a new Part, you must document your contribution on the Part's Main Page on the <a href="http://parts.igem.org/Main_Page">Registry</a> for your team to be eligible for this criteria. You can use this page to link to that part and include additional information about your contribution.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2023 Medals Page</a> for more information.</p>
</div>
</div>
</div>
......
......@@ -11,7 +11,7 @@
<h4>Bronze Medal Criterion #3</h4>
<p>Describe how and why you chose your iGEM project.<p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2023 Medals Page</a> for more information.</p>
</div>
</div>
</div>
......@@ -31,7 +31,7 @@
<h2>Inspirations</h2>
<hr>
<ul>
<li><a href="https://2019.igem.org/Team:Leiden/Description">2019 Leiden</a></li>
<li><a href="https://2022.igem.wiki/dtu-denmark/description">2022 DTU-Denmark</a></li>
<li><a href="https://2019.igem.org/Team:ITESO_Guadalajara/Description">2019 ITESO Guadalajara</a></li>
<li><a href="https://2020.igem.org/Team:Technion-Israel/Description">2020 Technion Israel</a></li>
<li><a href="https://2020.igem.org/Team:Botchan_Lab_Tokyo/Description">2020 Botchan Lab Tokyo</a></li>
......
......@@ -8,11 +8,11 @@
<div class="row mt-4">
<div class="col">
<div class="bd-callout bd-callout-info">
<h4>Best Education Special Prize</h4>
<h4>Best Education</h4>
<p>How have you developed new opportunities to include more people in shaping synthetic biology? Innovative educational tools and outreach activities have the ability to establish a two-way dialogue with new communities by discussing public values and the science behind synthetic biology. Document your approach and what was learned by everyone involved to compete for this award.</p>
<p>To compete for the Best Education Prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p>
<p>To compete for the Best Education prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p>
</div>
</div>
</div>
......
......@@ -12,7 +12,7 @@
<p>Demonstrate engineering success in a part of your project by going through at least one iteration of the engineering design cycle. This achievement should be distinct from your Contribution for Bronze.<p>
<p>If you plan to show engineering success by creating a new Part that has been shown to work as expected, you must document your contribution on the Part's Main Page on the <a href="http://parts.igem.org/Main_Page">Registry</a> for your team to be eligible for this criteria.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2023 Medals Page</a> for more information.</p>
</div>
</div>
</div>
......
......@@ -8,11 +8,11 @@
<div class="row mt-4">
<div class="col">
<div class="bd-callout bd-callout-info">
<h4>Best Supporting Entrepreneurship Special Prize</h4>
<h4>Best Supporting Entrepreneurship</h4>
<p>The Best Supporting Entrepreneurship award recognizes exceptional effort to build a business case and commercialize an iGEM project. This award is open to all teams to show that entrepreneurship is something all teams can aspire to do with their project. This award can go to an new project, or to a previous project that a team aimed to commercialize. Have you filed a provisional patent on your project/device/process? Have you raised money to build and ship products? Have you pitched your idea to investors and received money? As always in iGEM, the aim is to impress the judges!</p>
<p>To compete for the Best Supporting Entrepreneurship prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p>
</div>
</div>
</div>
......
......@@ -8,11 +8,11 @@
<div class="row mt-4">
<div class="col">
<div class="bd-callout bd-callout-info">
<h4>Best Hardware Special Prize</h4>
<h4>Best Hardware</h4>
<p>This is a prize for the team that has developed a piece of hardware for synthetic biology. Hardware in iGEM should make synthetic biology based on standard parts easier, faster, better or more accessible to our community. Did your team make a sensor to help teams characterize parts? Did you make a robot that can help teams perform experiments or do cloning more easily? Tell us what your team did for this award!</p>
<p>To compete for the Best Hardware prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p>
</div>
</div>
</div>
......
{% extends "layout.html" %}
{% block title %}Home{% endblock %}
{% block lead %}<b>Welcome to iGEM 2022!</b> Your team has been approved and you are ready to start the iGEM season!{% endblock %}
{% block lead %}<b>Welcome to iGEM 2023!</b> Your team has been approved and you are ready to start the iGEM season!{% endblock %}
{% block page_content %}
......@@ -11,8 +11,8 @@
<hr>
<p>Please read the following pages:</p>
<ul>
<li><a href="https://competition.igem.org/">The Competition Page</a></li>
<li><a href="https://competition.igem.org/deliverables/team-wiki">Wiki Requirements page</a></li>
<li><a href="https://competition.igem.org/deliverables/team-wiki" target="_blank">Wiki Requirements page</a></li>
<li><a href="https://competition.igem.org/judging/pages-for-awards" target="_blank">Standard URL Pages for Awards</a></li>
</ul>
</div>
</div>
......@@ -20,8 +20,9 @@
<div class="col">
<h2>Styling your wiki</h2>
<hr>
<p>You may style this page as you like or you can simply leave the style as it is. You can easily keep the styling and edit the content of these default wiki pages with your project information and completely fulfill the requirement to document your project.</p>
<p>While you may not win Best Wiki with this styling, your team is still eligible for all other awards. This default wiki meets the requirements, it improves navigability and ease of use for visitors, and you should not feel it is necessary to style beyond what has been provided.</p>
<p>Feel free to customize the page styling according to your preferences, or you can simply leave the style as it is. It's wise to focus on a clear content first, and on a clean design later.</p>
<p>Be cautious with the size of the assets like images, videos, and more into your wiki. Large file sizes can hinder the presentation of wikis due to slow internet connections. Remember to compress large files before uploading them to iGEM servers.</p>
<p>This default wiki meets the requirements, enhances navigability, and provides a user-friendly experience for visitors. You should not feel obliged to go beyond the provided styling.</p>
</div>
</div>
<div class="row mt-4">
......@@ -35,7 +36,7 @@
<li>You have a global audience! Consider the different backgrounds that your users come from.</li>
<li>Make sure information is easy to find; nothing should be more than 3 clicks away.</li>
<li>Avoid using very small fonts and low contrast colors; information should be easy to read.</li>
<li>Start documenting your project as early as possible; don't leave anything to the last minute before the Wiki Freeze. For a complete list of deadlines visit the iGEM 2022 calendar</li>
<li>Start documenting your project as early as possible; don't leave anything to the last minute before the Wiki Freeze. For a complete list of deadlines visit the <a href="https://competition.igem.org/calendar" target="_blank">iGEM Competition calendar</a></li>
<li>Have lots of fun!</li>
</ul>
</div>
......@@ -44,11 +45,12 @@
<hr>
<p>You can also view other team wikis for inspiration! Here are some examples:</p>
<ul>
<li><a href="https://2019.igem.org/Team:Vilnius-Lithuania">2019 Vilnius Lithuania</a></li>
<li><a href="https://2019.igem.org/Team:NUS_Singapore">2019 NUS Singapore</a></li>
<li><a href="https://2019.igem.org/Team:Lambert_GA">2019 Lambert GA</a></li>
<li><a href="https://2020.igem.org/Team:Waterloo">2020 Waterloo</a></li>
<li><a href="https://2020.igem.org/Team:TUDelft">2020 TUDelft</a></li>
<li><a href="https://2022.igem.wiki/dtu-denmark">2022 DTU-Denmark</a></li>
<li><a href="https://2022.igem.wiki/virginia">2022 Virginia</a></li>
<li><a href="https://2022.igem.wiki/crete">2022 Crete</a></li>
<li><a href="https://2022.igem.wiki/estonia-tuit">2022 Estonia_TUIT</a></li>
<li><a href="https://2022.igem.wiki/ashesighana">2022 AshesiGhana</a></li>
<li><a href="https://2021.igem.org/Team:SDU-Denmark">2021 SDU-Denmark</a></li>
<li><a href="https://2020.igem.org/Team:XMU-China">2020 XMU China </a></li>
<li><a href="https://2020.igem.org/Team:TAS_Taipei">2020 TAS Taipei </a></li>
</ul>
......
......@@ -8,25 +8,18 @@
<div class="row mt-4">
<div class="col">
<div class="bd-callout bd-callout-info">
<h4>Silver Medal Criterion #3</h4>
<h4>Silver Medal Criterion #2</h4>
<p>Explain how you have determined your work is responsible and good for the world.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2023 Medals Page</a> for more information.</p>
</div>
<div class="bd-callout bd-callout-info">
<h4>Gold Medal Criterion #1</h4>
<p>Demonstrate how your team responded to your human practices reflections, research, and/or engagement. You should show how your activities impacted your project purpose, design, and/or execution. </p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
</div>
<div class="bd-callout bd-callout-info">
<h4>Best Integrated Human Practices Special Prize</h4>
<p>To compete for the this prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p>
<h4>Best Integrated Human Practices</h4>
<p>To compete for the Best Integrated Human Practices prize, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p>
<p>How does your project affect society and how does society influence the direction of your project? How might ethical considerations and stakeholder input guide your project purpose and design and the experiments you conduct in the lab? How does this feedback enter into the process of your work all through the iGEM competition? Document a thoughtful and creative approach to exploring these questions and how your project evolved in the process to compete for this award!</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p>
</div>
</div>
</div>
......@@ -36,7 +29,7 @@
<h2>Overview</h2>
<hr>
<p>At iGEM we believe societal considerations should be upfront and integrated throughout the design and execution of synthetic biology projects. “Human Practices” refers to iGEM teams' efforts to actively consider how the world affects their work and their work affects the world. Through your Human Practices activities, your team should demonstrate how you have thought carefully and creatively about whether your project is responsible and good for the world. We invite you to explore issues relating (but not limited) to the ethics, safety, security, and sustainability of your project, and to show how this exploration feeds back into your project purpose, design, and execution.</p>
<p>Please note you can compete for the Silver Medal criterion #3, Gold Medal criterion #1 and the Best Integrated Human Practices prize with this page.</p>
<p>Please note you can compete for the Silver Medal criterion #2 and the Best Integrated Human Practices prize with this page.</p>
<p>For more information, please see the <a href="https://responsibility.igem.org/human-practices/what-is-human-practices">Human Practices Hub</a>.
<p>On this page, your team should document all of your Human Practices work and activities. You should write about the Human Practices topics you considered in your project, document any activities you conducted to explore these topics (such as engaging with experts and stakeholders), describe why you took a particular approach (including referencing any work you built upon), and explain if and how you integrated takeaways from your Human Practices work back into your project purpose, design and/or execution.</p>
</div>
......
{% extends "layout.html" %}
{% block title %}Proposed Implementation{% endblock %}
{% block lead %}Explain how you would implement your project in the real world.{% endblock %}
{% block page_content %}
<div class="row mt-4">
<div class="col">
<div class="bd-callout bd-callout-info">
<h4>Silver Medal Criterion #4</h4>
<p>Explain how you would implement your project in the real world.<p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
</div>
</div>
</div>
{% endblock %}
{% extends "layout.html" %}
{% block title %}Improvement of an Existing Part{% endblock %}
{% block lead %}Describe the improvements your team made of an existing part.{% endblock %}
{% block page_content %}
<div class="row mt-4">
<div class="col">
<div class="bd-callout bd-callout-info">
<h4>Gold Medal Criterion #2</h4>
<p>Make a new Part that improves the function of an existing Part. This improvement must be distinct from your work for Bronze and Silver medals.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/medals">2022 Medals Page</a> for more information.</p>
</div>
<div class="bd-callout bd-callout-warning">
<h4>Note</h4>
<p>You must document your improvement on both the existing and new Parts' Main Pages on the <a href="http://parts.igem.org">Registry</a> for your team to be eligible for this criteria.</p>
</div>
</div>
</div>
{% endblock %}
......@@ -12,7 +12,7 @@
<p>The Inclusivity Award recognizes exceptional efforts to include people with diverse identities in scientific research. Who is allowed to have a voice in iGEM, synthetic biology, and science more broadly? How have you developed new opportunities to eliminate barriers and allow more people to contribute to, participate in, and/or be represented by these communities? To compete for this prize, activities do not have to be directly related to your team’s project. Document your approach, how you improved inclusivity, and what was learned.</p>
<p>To compete for the Inclusivity award, please describe your work on this page and also fill out the description on the <a href="https://competition.igem.org/deliverables/judging-form">judging form</a>.</p>
<hr>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2022 Awards Page</a> for more information.</p>
<p>Please see the <a href="https://competition.igem.org/judging/awards">2023 Awards Page</a> for more information.</p>
</div>
</div>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment