Form system improvements #41
Labels
No Label
Bug
Feature
Maintainability
Security
UX/UI
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: phryk/pdnew#41
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Expose fields through dict-style items (getitem, setitem, …).
Make sure setting assigns name/prefix (i.e. does what
add_field
does now.Also, have a go at
AutoForm
; a common use case overrides itshandle
function with an entire copy of the logic,with the only distinction being that redirects from downstream fieldsets are ignored in lieu for a simple reload (
redirect('')
).-> look whether the downstream redirects are actually used anywhere, if not just change the default behavior, at least for
AutoForm
(debatable if forBaseForm
)