18 lines
		
	
	
		
			317 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			317 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 Bienvenue0(Page): # version anglaise
 | 
						|
    form_model = 'player'
 | 
						|
    form_fields = ["q1_participation", "q2_previoussession"]
 | 
						|
 | 
						|
 | 
						|
 | 
						|
page_sequence = [
 | 
						|
    Bienvenue0,
 | 
						|
 | 
						|
]
 |