from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class Consentimiento(Page): form_model = 'player' form_fields = ['consentimiento'] class Datos(Page): form_model = 'player' form_fields = ['nombre', 'cedula', 'correo'] class Bienvenida(Page): form_model = 'player' class Informacion(Page): form_model = 'player' form_fields = ['producto'] class Resultados(Page): form_model = 'player' page_sequence = [Consentimiento, Datos, Bienvenida, Informacion, Resultados]