from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class MyPage7(Page):from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants class MyPage7(Page): form_model ='player' form_fields =['choice100', 'choice101', 'choice102', 'choice103', 'choice104', 'choice200', 'choice201', 'choice202', 'choice203', 'choice204', 'choice110', 'choice111', 'choice112', 'choice113', 'choice114', 'choice210', 'choice211', 'choice212', 'choice213', 'choice214', 'choice120', 'choice121', 'choice122', 'choice123', 'choice124', 'choice220', 'choice221', 'choice222', 'choice223', 'choice224', 'choice130', 'choice131', 'choice132', 'choice133', 'choice134', 'choice230', 'choice231', 'choice232', 'choice233', 'choice234', 'choice140', 'choice141', 'choice142', 'choice143', 'choice144', 'choice240', 'choice241', 'choice242', 'choice243', 'choice244','money', 'time0', 'time1', 'time2', 'time3', 'time4', 'product00','product01','product10','product11','product20', 'product21','product30','product31','product40','product41',] def js_vars(self): return dict( shopList3=Constants.shoppinglist3, currentRound=self.round_number, ) class ReceiveOrder(Page): form_model ='player' form_fields =['receive_order','transport_mode'] class Payment (Page): form_model ='player' form_fields = ['money'] class Feedback (Page): form_model = 'player' form_fields = ['feedback'] page_sequence = [MyPage7,Payment,Feedback]