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 %} +
  • Events
  • +
  • Code Jams
  • +
  • Winter Code Jam 2020: Ancient Technology
  • +
  • Rules
  • +{% endblock %} + +{% block event_content %} +
      +
    1. +

      + 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. +

      +
    2. +
    3. +

      + 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. +

      +
    4. +
    5. +

      + 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. +

      +
    6. +
    7. +

      + 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. +

      +
    8. +
    9. +

      + 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. + . +

      +
    10. +
    11. +

      You must use GitHub as source control.

      +
    12. +
    13. +

      + All code must be written and committed within the time constrictions of the jam +

      +

      +
    14. +
    + + +
    + 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" %} +
    + + +
    +{% endblock %} -- cgit v1.2.3