{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
{% if language == 0 %}
Contribute
{% else %}
Contribución
{% endif %}
{% endblock %}
{% block content %}
{% if language == 0 %}
{% formfield player.contribution label="How much will you contribute to the project (from 0 to Constants.endowment)?" %}
{{ form.contrib_pl.errors }}
{% else %}
{% formfield player.contribution label="¿Cuánto contribuirás en el proyecto (desde 0 a 10)?" %}
{{ form.contrib_pl.errors }}
{% endif %}
{% next_button %}
{% include Constants.instructions_template %}
{% endblock %}