35 lines
551 B
Python
35 lines
551 B
Python
|
from otree.api import (
|
||
|
models,
|
||
|
widgets,
|
||
|
BaseConstants,
|
||
|
BaseSubsession,
|
||
|
BaseGroup,
|
||
|
BasePlayer,
|
||
|
Currency as c,
|
||
|
currency_range,
|
||
|
)
|
||
|
|
||
|
|
||
|
doc = """
|
||
|
This application provides a webpage instructing participants how to get paid.
|
||
|
Examples are given for the lab and Amazon Mechanical Turk (AMT).
|
||
|
"""
|
||
|
|
||
|
|
||
|
class Constants(BaseConstants):
|
||
|
name_in_url = 'payment_info'
|
||
|
players_per_group = None
|
||
|
num_rounds = 1
|
||
|
|
||
|
|
||
|
class Subsession(BaseSubsession):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class Group(BaseGroup):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class Player(BasePlayer):
|
||
|
pass
|