- 16 May, 2013 1 commit
-
-
Serge S. Koval authored
-
- 14 May, 2013 1 commit
-
-
Serge S. Koval authored
-
- 08 May, 2013 2 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
-
- 05 May, 2013 4 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
Serge S. Koval authored
-
- 28 Apr, 2013 2 commits
-
-
Serge S. Koval authored
A bug occurred in get_one, solved in this change.
-
Mostafa Rokooie authored
-
- 27 Apr, 2013 2 commits
-
-
Mostafa Rokooie authored
-
Serge S. Koval authored
Cast to ObjectId is not needed in pymongo backend
-
- 24 Apr, 2013 1 commit
-
-
Serge S. Koval authored
-
- 23 Apr, 2013 2 commits
-
-
Serge S. Koval authored
-
Serge S. Koval authored
-
- 17 Apr, 2013 2 commits
-
-
Serge S. Koval authored
Add Simplified Chinese and Traditional Chinese translations
-
Serge S. Koval authored
-
- 16 Apr, 2013 3 commits
-
-
Serge S. Koval authored
Fixing jinja2 error in admin/lib.html
-
Ievgen Voloshchuk authored
UndefinedError: the inline if-expression on line 79 in 'admin/lib.html' evaluated to false and no else section was defined.
-
orewachichan authored
-
- 08 Apr, 2013 1 commit
-
-
Serge S. Koval authored
Fixed issue where some required fields would not be properly validated at the form level
-
- 07 Apr, 2013 1 commit
-
-
Adam LeVasseur authored
- Using newer wtf.validators.DataRequired, old one is going to be deprecated
-
- 04 Apr, 2013 2 commits
-
-
Serge S. Koval authored
HTML fix: use javascript:void(0) instead of # so page doesn't jump
-
mponizil authored
-
- 03 Apr, 2013 3 commits
-
-
Serge S. Koval authored
added persian language
-
Serge S. Koval authored
make bulk deletes go through `delete_model`
-
Paul Swartz authored
I'm not sure this is ideal (might hide some errors?) but it's the easiest way to use the hook for both kinds of delete.
-
- 01 Apr, 2013 2 commits
-
-
hr-seifollahi authored
-
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
-