%extends "base_layout.html" % set page_title = game.name {% block head %} {% endblock %} {% block content %}
{{ game.gamejam.theme }}

{{ game.name }} % if not game.gamejam.voteopen and game.place != 0: - {{ game.place }}. Platz % endif
% if game.team
von {{ game.team }}
% endif % if not game.verified and user.admin: % set confirm_url = url_for('confirm_game', id=game.id) Confirm Game % endif

% if game.screens:
% for screen in game.screens % endfor
% endif

Beschreibung

{% autoescape false %} {{ (game.description or "Keine Beschreibung :(") | replace('\n', '
') }} {% endautoescape %}

% if (game.editable and game.verified) or user.admin:

Builds

% endif % if game.builds:

Downloads

% for key, build in game.builds.items(): % if game.editable: % set upload_url = url_for('upload_build', game_id=game.id, platform=key) Upload % elif build: % if build.startswith('http'): % set download_url = build % elif build.startswith('/'): % set download_url = url_for('static', filename='uploads' + build) % else: % set download_url = "https://drive.google.com/drive/folders/" + build % endif % endif % endfor

Die Builds werden so bereit gestellt, wie sie uns überreicht wurden. Wir übernehmen keine Garantie, dass die Builds getestet wurden und auf allen System problemlos funktionieren.

Wir übernehmen keine Haftung für eventuelle Schäden, die durch das Ausführen von Fremdsoftware entstehen. Jegliche Schäden fallen auf die Entwickler der jeweiligen Software zurück.

% endif % if game.credits:

Credits

% endif % if game.questions:

Abstimmung

% if not user and game.gamejam.voteopen: Du musst dich anmelden, um abzustimmen. % elif user.id in game.authors and game.gamejam.voteopen Du kannst nicht für dein eigenes Spiel abzustimmen. % else:
% for question in game.questions

{{ question.caption }}

{{ question.name }}
% if game.gamejam.voteopen
% for i in range(question.maxstrength) % endfor
% else
{{ '{:0.2f}'.format(question.mean) }}
% endif
% endfor % if game.gamejam.voteopen
% endif
% endif % endif

Kommentare

% if user:

Kommentar verfassen:

% endif
{% endblock %}