__author__ = 'aamirbhatt'

INTEGER = "int"
DOUBLE = "double"
STRING = "str"
DATE = "date"
FILE = "file"
TEXT = "text"
CONCEPT = "concept"

DATA_TYPE = (
    ("Int", INTEGER),
    ("Double", DOUBLE),
    ("Str", STRING),
    ("Date", DATE),
    ("File", FILE),
    ("Text", TEXT),
    ("Concept", CONCEPT),
)

CHOICES = "choices"
CHECKBOX = "checkbox"
RADIO = "radio"
DROPDOWN = "dropdown"

DISPLAY_TYPE = (
    ("radio", "radio"),
    ("text", "text"),
    ("longtext", "longtext"),
    ("email", "email"),
    ("integer", "integer"),
    ("double", "double"),
    ("password", "password"),
    ("checkbox", "checkbox"),
    ("boolean", "boolean"),
    ("time", "time"),
    ("datetime", "datetime"),
    ("date", "date"),
    ("image", "image"),
    ("health", "health"),
    ("dropdown", "dropdown"),
    ("height", "height"),
    ("instruction", "instruction"),

)
