- 10 May, 2018 2 kayıt (commit)
-
-
Claude Paroz yazdı
-
Maximilian Merz yazdı
The problem: “3 days ago” should translate to “vor 3 Tagen” in German, while “3 days” translates to “3 Tage”. #21408 describes that django always translated to “Tage”, even when the dative “Tagen” was correct. The same applies to months (“Monate”/“Monaten”) and years (“Jahre”/“Jahren”). The solution: Let `timesince` caller provide the string dict to use for the time-related strings.
-
- 09 May, 2018 5 kayıt (commit)
-
-
Morgan Aubert yazdı
-
Hasan Ramezani yazdı
-
Nicolas Noé yazdı
-
Nicolas Noé yazdı
-
Claude Paroz yazdı
-
- 08 May, 2018 1 kayıt (commit)
-
-
Tim Graham yazdı
-
- 07 May, 2018 4 kayıt (commit)
-
-
Nicolas Noé yazdı
-
Claude Paroz yazdı
-
Claude Paroz yazdı
Thanks Tim Graham for the review.
-
Hasan Ramezani yazdı
-
- 05 May, 2018 2 kayıt (commit)
-
-
Sanket Saurav yazdı
Fixed #28913 -- Fixed error handling when MIGRATIONS_MODULES specifies a nonexistent top-level package.
-
Samir Shah yazdı
* Added logging of 500 responses for instantiated responses. * Added logging of all 4xx and 5xx responses.
-
- 03 May, 2018 4 kayıt (commit)
-
-
Carlton Gibson yazdı
-
Carlton Gibson yazdı
-
Hasan Ramezani yazdı
-
CHI Cheng yazdı
-
- 02 May, 2018 4 kayıt (commit)
-
-
Kelly Hogan yazdı
-
CHI Cheng yazdı
-
Tim Graham yazdı
-
Tim Graham yazdı
-
- 30 Nis, 2018 1 kayıt (commit)
-
-
- 29 Nis, 2018 1 kayıt (commit)
-
-
PhrydRhys yazdı
-
- 28 Nis, 2018 3 kayıt (commit)
-
-
Mariusz Felisiak yazdı
-
Zackary Troop yazdı
Thanks Tim Graham and Mariusz Felisiak for the reviews.
-
priyanshsaxena yazdı
-
- 27 Nis, 2018 3 kayıt (commit)
-
-
Oscar Esgalha yazdı
Fixed #29367 -- Fixed model state on objects with a primary key created with QuerySet.bulk_create().
-
Nicolas Noé yazdı
-
Claude Paroz yazdı
-
- 25 Nis, 2018 1 kayıt (commit)
-
-
Claude Paroz yazdı
-
- 24 Nis, 2018 2 kayıt (commit)
-
-
Tim Graham yazdı
-
Claude Paroz yazdı
-
- 23 Nis, 2018 5 kayıt (commit)
-
-
François Freitag yazdı
COUNT is more expensive than EXISTS; use the latter when possible.
-
François Freitag yazdı
Instead of loading all QuerySet results in memory, count the number of entries. This adds an extra query when list() or tuple() is called on the choices (because both call __len__() then __iter__()) but uses less memory since the QuerySet results won't be cached. In most cases, the choices will only be iterated on, meaning that __len__() won't be called and only one query will be executed.
-
Stefan R. Filipek yazdı
-
adamth yazdı
-
Hasan Ramezani yazdı
-
- 21 Nis, 2018 1 kayıt (commit)
-
-
Hasan Ramezani yazdı
Thanks Tim Graham for the fix.
-
- 20 Nis, 2018 1 kayıt (commit)
-
-
orlnub123 yazdı
-