예제 #1
0
 class Meta:
     model = Identity
     fields = (
         'email',
         'password',
         'password2',
     )
     layout = (
         Fieldset(_("Insert your e-mail address"), "email"),
         Fieldset(
             _("Select your password and type it again to prevent accidental typo"
               ), "password", "password2"),
     )
예제 #2
0
 class Meta:
     layout = (Fieldset(
         'Log in',
         None,
         'email',
         'password',
     ), )
예제 #3
0
 class Meta:
     layout = (Fieldset(
         u"设置",
         "name",
         "url",
     ), )
     model = Project
     exclude = ('dateline', 'lastview', 'creator', 'participants', 'key',
                'token')
예제 #4
0
 class Meta:
     layout = (Fieldset(
         "Update a venue",
         "name",
         "street",
         "city",
         "state",
         "zip",
         "latitude",
         "longitude",
         "valid_dates",
     ), )
예제 #5
0
파일: forms.py 프로젝트: kplimack/basejump
 class Meta:
     layout = (Fieldset(
         "Add Asset",
         "asset_type",
         "hostname",
         "alt_id",
         "model",
         "serial",
         "console",
         "purchase_date",
         "provision_date",
         "primary_interface_name",
         "primary_interface_ip4",
         "primary_interface_netmask",
         "primary_interface_mac",
         "primary_interface_vlan",
         "primary_interface_partner",
         "physical_status",
         "logical_status",
         "rack",
         "notes",
     ), )
예제 #6
0
 class Meta:
     layout = (Fieldset('User story', None, 'id', 'title',
                        'story_description', 'moscow', 'is_green',
                        'time_boxed', 'tags'), )
예제 #7
0
 class Meta:
     layout = (Fieldset('Backlog', None, 'id', 'story'), )
예제 #8
0
 class Meta:
     layout = (Fieldset('Add/Edit Fire Story', None, 'id', 'sprint_id',
                        'title', 'story_description', 'tags', 'score',
                        'owner'), )
     exclude = ('tasks', )
예제 #9
0
 class Meta:
     layout = (Fieldset('Change Email', 'email'), )
예제 #10
0
 class Meta:
     layout = (Fieldset("Update a user", "name", "email", "password",
                        "admin"), )
예제 #11
0
 class Meta:
     layout = (Fieldset('Signup Now', 'username', 'email', 'password1',
                        'password2'), )
예제 #12
0
 class Meta:
     layout = (Fieldset('Reset Password', 'new_password1',
                        'new_password2'), )
예제 #13
0
 class Meta:
     layout = (
         Fieldset(u"", "action",),
     )
     model = FunnelAction
     exclude = ('funnel','order')
예제 #14
0
 class Meta:
     layout = (Fieldset('Edit Metadata', 'title', 'artist', 'key',
                        'time'), )
예제 #15
0
파일: forms.py 프로젝트: djtrack16/tellme
 class Meta:
     layout = (Fieldset("Login", "username", "password"), )
예제 #16
0
파일: forms.py 프로젝트: djtrack16/tellme
 class Meta:
     model = User
     fields = ("username", "email")
     layout = (Fieldset("Create an account", "username", "email",
                        "password1", "password2"), )
예제 #17
0
 class Meta:
     layout = (Fieldset(
         "Please Login",
         "username",
         "password",
     ), )
예제 #18
0
 class Meta:
     layout = (Fieldset('TaskForm', None, 'id', 'description', 'score'), )
예제 #19
0
 class Meta:
     layout = (Fieldset('Reset Password', 'email'), )
예제 #20
0
 class Meta:
     layout = (Fieldset(u"行为设置", "name", "url", "xpath", "event",
                        "is_flag"), )
     model = Action
     exclude = ('project')
예제 #21
0
 class Meta:
     layout = (Fieldset(
         "Sign into Basejump",
         "username",
         "password",
     ), )
예제 #22
0
 class Meta:
     layout = (Fieldset('Login Now', 'identification', 'password',
                        'remember_me'), )
예제 #23
0
 class Meta:
     layout = (
         Fieldset('Edit Tune', 'raw'),
     )
예제 #24
0
 class Meta:
     layout = (
         Fieldset("What are you up to?", "summary", "who", ),
     )
예제 #25
0
 class Meta:
     layout = (Fieldset('Change Password', 'old_password', 'new_password1',
                        'new_password2'), )
예제 #26
0
 class Meta:
     layout = (
         Fieldset(u"", "name"),
     )
     model = Funnel
     exclude = ('project')
예제 #27
0
파일: forms.py 프로젝트: kplimack/basejump
 class Meta:
     layout = (Fieldset("Add Area", "name", "address", "phone", "email",
                        "website", "notes"), )
예제 #28
0
 class Meta:
     layout = (Fieldset('New Tune', 'title', 'artist', 'key', 'time'), )
예제 #29
0
파일: forms.py 프로젝트: kplimack/basejump
 class Meta:
     layout = (Fieldset("Add Rack", "name", "area", "numu"), )