From e2144174d73dab5c49daae49362a9c7ed04594bb Mon Sep 17 00:00:00 2001 From: ks129 <45097959+ks129@users.noreply.github.com> Date: Sat, 28 Nov 2020 15:20:09 +0200 Subject: Migrate code jam 6 rules page from wiki to HTML --- .../templates/events/pages/code-jams/6/rules.html | 81 ++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 pydis_site/templates/events/pages/code-jams/6/rules.html (limited to 'pydis_site/templates') diff --git a/pydis_site/templates/events/pages/code-jams/6/rules.html b/pydis_site/templates/events/pages/code-jams/6/rules.html new file mode 100644 index 00000000..e9f2d434 --- /dev/null +++ b/pydis_site/templates/events/pages/code-jams/6/rules.html @@ -0,0 +1,81 @@ +{% extends "events/base.html" %} + +{% block title %}Rules{% endblock %} + +{% block breadcrumb %} +
+ The majority of your project must be Python. + We will use the GitHub language details for this, + so just make sure your repo contains at least 51% Python, and you'll be okay. +
++ Your solution must use the Kivy framework. + It is not permitted to work around this by e.g. using Kivy as a wrapper for another framework. +
+
+ Your solution should be platform agnostic.
+ For example, if you use filepaths in your submission,
+ use pathlib
to create platform agnostic Path objects instead of hardcoding the paths.
+
+ Your project must be feasible to run and simple to set up on a desktop computer
+ - which means you should almost certainly use some sort of dependency manager,
+ like pipenv
, poetry
, or a strictly pinned requirements.txt
.
+
+ You must get contributions from every member of your team, + if you have an issue with someone on your team please contact a member of the administration team. + These contributions do not necessarily have to be code, + for example it's absolutely fine for someone to contribute management, documentation, graphics or audio. + + Team members that do not contribute will be removed from the Code Jam, + and will not receive their share of any prizes the team may win. + They may also be barred from entering future events. + . +
+You must use GitHub as source control.
++ All code must be written and committed within the time constrictions of the jam +
+ Please note that our regular community rules and code of conduct + also apply during the event and that we reserve the right to make changes to these rules at any time. ++{% endblock %} + +{% block sidebar %} + {% include "events/sidebar/code-jams/6.html" %} +