- 10 Jun, 2015 1 commit
-
-
Serge S. Koval authored
Fixed #846, #808. Refactored JOIN logic so it now works with relationship properties instead of tables. This is partially incompatible change - you will have to update your custom filters. `apply` method now accepts additional `alias` argument. `alias` should be used to resolve column in query with specific JOIN path. Long story short, old code which was looking like this: ```python class MyFilter(SQLABaseFilter): def apply(self, query, value): return query.filter(self.column == value) ``` Should look like this: ```python class MyFilter(SQLABaseFilter): def apply(self, query, value, alias=None): return query.filter(self.get_column(alias) == value) ```
-
- 09 Jun, 2015 2 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
-
- 03 Jun, 2015 5 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
- 02 Jun, 2015 3 commits
-
-
Petrus J.v.Rensburg authored
-
Petrus J.v.Rensburg authored
-
Petrus J.v.Rensburg authored
-
- 01 Jun, 2015 4 commits
-
-
Serge S. Koval authored
fixes menu link missing navbar-nav
-
Serge S. Koval authored
Adds Leaflet Search to Map
-
Geoffrey Vedernikoff authored
-
Geoffrey Vedernikoff authored
-
- 31 May, 2015 1 commit
-
-
Ruquan Zhang authored
add navbar-nav class to ul tag when create menu link use bootstrap3
-
- 29 May, 2015 2 commits
-
-
Geoffrey Yefim Vedernikoff authored
Adds leaflet search to maps
-
Geoffrey Vedernikoff authored
-
- 28 May, 2015 1 commit
-
-
Serge S. Koval authored
Examples
-
- 26 May, 2015 1 commit
-
-
Petrus J.v.Rensburg authored
-
- 24 May, 2015 12 commits
-
-
Petrus J.v.Rensburg authored
Merge branch 'upstream-edit-after-create' of https://github.com/Code4SA/flask-admin into Code4SA-upstream-edit-after-create
-
Petrus Janse van Rensburg authored
Make 'contains' the default string filter operator
-
Petrus Janse van Rensburg authored
Update filters.py
-
Petrus Janse van Rensburg authored
[fix] ListField validation
-
Petrus J.v.Rensburg authored
-
Petrus J.v.Rensburg authored
-
Petrus J.v.Rensburg authored
-
Petrus J.v.Rensburg authored
-
Petrus J.v.Rensburg authored
-
Petrus J.v.Rensburg authored
-
Petrus J.v.Rensburg authored
-
Petrus J.v.Rensburg authored
-
- 21 May, 2015 5 commits
-
-
Serge S. Koval authored
missed a comma, sorry
-
James Turk authored
-
Serge S. Koval authored
add trove classifiers to setup.py
-
James Turk authored
will make it so https://caniusepython3.com stops showing this as a blocker based on the versions currently tested in Travis
-
Serge S. Koval authored
-
- 20 May, 2015 3 commits
-
-
rma4ok authored
-
Serge S. Koval authored
FileUploadInput fix
-
Serge S. Koval authored
Added after_model_delete hook on view classes like after_model_change
-