deform icon indicating copy to clipboard operation
deform copied to clipboard

A Python HTML form library.

Results 62 deform issues
Sort by recently updated
recently updated
newest added

Suggested fix for https://github.com/Pylons/deform/issues/512. (Code style uses Python 3 type hinting, since ``setup.py`` has Python 3.6 as the minimum version.)

Thanks for Deform; lovely work! An question/issue re the jQuery versuib and security: - The current version of Deform (2.0.15) ships with ``static/scripts/jquery-2.0.3.min.js``. - The advice is to load this...

This issue is tracking https://github.com/SeleniumHQ/selenium/issues/9201. For now I have pinned selenium: ``` testing_extras.extend(["selenium >= 4.0a, < 4.0.0.b1"]) ```

Enhance this section: https://docs.pylonsproject.org/projects/deform/en/main/templates.html#alternative-template-engines

enhancement
docs

Adds a Select2Sortable widget that allows drag and drop reordering of a selection. As discussed in https://github.com/Pylons/deform/issues/465

This is a redo of PR #185, rebased onto the current master branch.

enhancement

Just for syntax sugar so you can `del(form['something'])` or for multi part forms: ``` python try: appstruct = form['section'].validate_pstruct(pstruct['section']) exceptValidationFailure as e: form['something'] = e.field return form.render() ```

enhancement

With these changes, `FormWidget.css_class` can be set to `form-horizontal` or `form-inline` to trigger bootstrap's alternative form layouts. For horizontal forms the columns widths are controlled by a new setting MappingWidget.column_classes...

enhancement

solves #156 #211 #215 indirectly Instead of blindly calling jQuery in `deform.js`, first test that it's loaded before calling. This way you can now postpone loading jQuery until the end...

enhancement
docs

Let's say there are Admin and non-Admin users. An Admin user would always be able to edit the values in the select, whereas a non-Admin would be able to readonly....

bug
needs-pr
should backport