from otree.api import Currency as c, currency_range from ._builtin import Page, WaitPage from .models import Constants import random import copy products = [ { "picUrl" : "https://gd3.alicdn.com/imgextra/i3/2964762822/O1CN011WiWAdhtoggnFrT_!!2964762822.jpg", "title":"甘源牌青豆青豌豆原味", "price" : "1.70", "type" : "1", "id" : 1, "short" : 1 }, { "picUrl" : "/static/img/liulian.png", "title":"爱吃堡细沙榴莲饼", "price" : "1.70", "type" : "1", "id" : 2, "short" : 1 }, { "picUrl" : "/static/img/caomei.png", "title":"爱吃堡细沙草莓饼", "price" : "1.60", "type" : "1", "id" : 3, "short" : 1 }, { "picUrl" : "/static/img/xiantao.png", "title":"宏明鲜蛋桃酥", "price" : "1.60", "type" : "1", "id" : 4, "short" : 1 }, { "picUrl" : "https://img.alicdn.com/imgextra/i1/2127780240/O1CN01nopmDe1DdxfxC9TUd_!!2127780240.jpg", "title":"宏明曲格酥榴莲味", "price" : "1.60", "type" : "1", "id" : 11, "short" : 0 }, { "picUrl" : "https://img.alicdn.com/imgextra/i1/2127780240/O1CN01B7n8Pp1DdxfxC804w_!!2127780240.jpg", "title":"宏明曲格酥海盐芝士味", "price" : "1.60", "type" : "1", "id" : 12, "short" : 0 }, { "picUrl" : "https://img.alicdn.com/imgextra/i2/2127780240/O1CN01iN6vRh1DdxfqFKbv0_!!2127780240.jpg", "title":"宏明曲格酥咸蛋黄味", "price" : "1.60", "type" : "1", "id" : 13, "short" : 0 }, ] class Shop(Page): form_model = 'player' form_fields = ["selectedId"] def vars_for_template(self): pros = copy.deepcopy(products) return dict( products = pros ) def js_vars(self): pros = copy.copy(products) return dict( products = pros ) class Review(Page): form_model = 'player' form_fields = ["starNum","comment"] def vars_for_template(self): id = self.player.selectedId choosenProduct = {} for item in products: if id == item["id"]: choosenProduct = item return dict( item = choosenProduct ) class Survey(Page): form_model = 'player' form_fields = ["PQU1","PQU2","PQU3","PQU4","PFU1","PFU2","PFU3","PFU4","PFU5","PF1","PF2","S1","S2","EC1","EC2","EC3",'MSQ2','MSQ4',"RP11","RP12","RP13","RP14","RP21","RP22","RP23","RP24"] class ResultsWaitPage(WaitPage): pass class Results(Page): pass page_sequence = [Shop,Review,Survey]