- 01 Apr, 2013 1 commit
-
-
hr-seifollahi authored
-
- 28 Mar, 2013 3 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
Proposition for translation : updating french translation
-
- 27 Mar, 2013 5 commits
-
-
CeReynAud authored
Translation less literale. Model-> objet (!=modèle) Submit->Proposer (!=Proposé)
-
-
CeReynAud authored
Model -> objet (!= modèle) Submit -> Proposer (instead of Proposé)
-
Serge S. Koval authored
-
Serge S. Koval authored
-
- 26 Mar, 2013 3 commits
-
-
Serge S. Koval authored
Fix for performance issue when calculating total row count for paging
-
Bruno Azzinnari authored
Fix for a performance issue when getting the total row count when implementing paging. When dealing with about 250.000 rows, it was taking about 30 secs to show one page on the first load. With this modifications it executes almost instantly. The problem was that the query applying .count() to the current query generated the SQL: SELECT count(*) AS count_1 FROM ( SELECT ModelView-columns FROM ModelView-table WHERE conditions ) as anon_1; which made it actually get all the data in the inner query for then counting the rows and returning the amount. With this modification, the generated query is: SELECT count(*) AS count_1 FROM ModelView-table WHERE conditions; that executes instantly.
-
Serge S. Koval authored
-
- 25 Mar, 2013 4 commits
-
-
Serge S. Koval authored
Proposition for translation : adding french language
-
CeReynAud authored
Première version pour v1.0.5
-
Serge S. Koval authored
-
Serge S. Koval authored
-
- 22 Mar, 2013 6 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
refactor `self.models.objects` into a method
-
- 21 Mar, 2013 5 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
Tests failing in source distribution -- MANIFEST.in fix
-
- 20 Mar, 2013 1 commit
-
-
Serge S. Koval authored
-
- 19 Mar, 2013 4 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
Add full support for SQLAlchemy.Enum field
-
Matej Stuchlik authored
-
- 15 Mar, 2013 8 commits
-
-
Artem Serga authored
-
Serge S. Koval authored
Fileadmin hooks
-
Nathan Mustaki authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
Use InputRequired instead of deprecated Required wtform validator
-