21 lines
523 B
Python
21 lines
523 B
Python
![]() |
from otree.api import Currency as c, currency_range
|
||
|
from ._builtin import Page, WaitPage
|
||
|
from .models import Constants
|
||
|
|
||
|
import random
|
||
|
import time
|
||
|
|
||
|
class questappli(Page): # version anglaise
|
||
|
form_model = 'player'
|
||
|
form_fields = [ 'q1_app_installation', 'q2_satisfaction', 'q3_comments',
|
||
|
'q4_access_data', 'q5_weekly_reports',
|
||
|
'q6_energy_comparison',
|
||
|
'q7_water_comparison'
|
||
|
]
|
||
|
|
||
|
|
||
|
|
||
|
page_sequence = [
|
||
|
questappli,
|
||
|
]
|