- 26 Oct, 2016 2 commits
-
-
Serge S. Koval authored
New ARRAY type for sqlalchemy
-
Sebastian Kalinowski authored
In 1.1.0 [1] SqlAlchemy changed base type for ARRAY type. This is causing flask-admin to skip ARRAY fields due to unknown type. Now, the base type for ARRAY type is sqlalchemy.sql.sqltypes.ARRAY See: http://docs.sqlalchemy.org/en/latest/changelog/changelog_11.html#change-1.1.0b1-sql
-
- 24 Oct, 2016 2 commits
-
-
Serge S. Koval authored
Use Google Places for map box search
-
Serge S. Koval authored
Revert PR #1231
-
- 23 Oct, 2016 3 commits
-
-
Serge S. Koval authored
Fix regression with late-evaluation relationships no longer working with filters
-
Jacob Magnusson authored
Regression was introduced in 47080aeb (PR #1348) where `is_hybrid_property` was changed to support remote hybrid properties. When lambdas were encountered in the iteration they were passed as-is to the function `get_hybrid_properties`, which in turn threw the exception `sqlalchemy.exc.NoInspectionAvailable: No inspection system is available for object of type <class 'function'>`. Test has been updated to ensure that flask-admin will continue to support lambdas as a relationship’s first argument.
-
Jacob Magnusson authored
Also: * Upgrades `leaflet` to 1.0.0 final. * Removes `leaflet.search` which was not working reliably (not even in their own demos...) * Map uses full width of form container by default * Ability to use a new app configuration key `GOOGLE_MAPS_API_KEY`. [This allows for increased daily quotas and ability to track usage](https://developers.google.com/maps/documentation/javascript/get-api-key). Note that this key must have Google Places API enable. See link.
-
- 16 Oct, 2016 1 commit
-
-
PJ Janse van Rensburg authored
-
- 11 Oct, 2016 2 commits
-
-
Serge S. Koval authored
Add desc as a function parameter to sort_url
-
Serge S. Koval authored
on_form_prefill() should be executed when form validation fail.
-
- 08 Oct, 2016 2 commits
-
-
Serge S. Koval authored
Fix bad call `super()` in `BaseSQLAFilter.apply`
-
lifei authored
-
- 04 Oct, 2016 1 commit
-
-
Conner Mo authored
-
- 02 Oct, 2016 1 commit
-
-
PJ Janse van Rensburg authored
-
- 30 Sep, 2016 1 commit
-
-
Tom Kedem authored
-
- 29 Sep, 2016 1 commit
-
-
Jacob Magnusson authored
Mistake on my part. See discussion in #1341. Fixes #1341
-
- 23 Sep, 2016 4 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
Added sorting, labeling and visibility configuration to file admin columns
-
Serge S. Koval authored
Extract a method for calculating inline model keys
-
Serge S. Koval authored
Support association proxies in path when determining hybrid property
-
- 18 Sep, 2016 6 commits
-
-
Tom Kedem authored
1) Added support for dealing with association proxies when determining if field path is a hybrid property. 2) Restored support for filters using column values (not just their names).
-
Serge S. Koval authored
Fixes #1339 and adds python 3 support to the example
-
Tom Kedem authored
-
Serge S. Koval authored
Fix CSRF for production deployments
-
Serge S. Koval authored
Added support for remote hybrid properties filters
-
Tom Kedem authored
-
- 17 Sep, 2016 2 commits
- 15 Sep, 2016 1 commit
-
-
Tom Kedem authored
-
- 14 Sep, 2016 1 commit
-
-
Andrew Grigorev authored
Current SecureForm implementation generates CSRF secret using `os.urandom()` every time when application start up. CSRF secret is used to calculate csrf_token check value, so if someone would use a command similar to gunicorn --workers=8 app to run his flask-admin app on production then most form submissions would silently fail (silently - as for now, it is probably another one bug). Instead of custom `os.urandom()` logic the `app.secret_key` value should be used to produce CSRF token values.
-
- 10 Sep, 2016 1 commit
-
-
Tom Kedem authored
-
- 08 Sep, 2016 4 commits
-
-
Serge S. Koval authored
Added support for sqla association proxy in model view.
-
Tom Kedem authored
-
Tom Kedem authored
-
Serge S. Koval authored
allow user to set flag "ignore_hidden"
-
- 05 Sep, 2016 3 commits
-
-
Serge S. Koval authored
Fix geoa.GeoJSONField
-
Andrew Grigorev authored
-
Andrew Grigorev authored
-
- 03 Sep, 2016 2 commits
-
-
Serge S. Koval authored
support for WTForms >= 3.0
-
Alan Hamlett authored
-