diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-09 09:45:56 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-09 09:45:56 +0200 |
commit | 9080734227040dff353c0f78cdcaafd95a115b76 (patch) | |
tree | 1c0433654a6b002e3aaea4acea877adb69bd7375 /src/web/templates | |
parent | Better like that. (diff) | |
download | newspipe-9080734227040dff353c0f78cdcaafd95a115b76.tar.gz newspipe-9080734227040dff353c0f78cdcaafd95a115b76.tar.bz2 newspipe-9080734227040dff353c0f78cdcaafd95a115b76.zip |
Bug fix: unorderable types when listing the categories.
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/categories.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/categories.html b/src/web/templates/categories.html index a61cc4b2..4985e0ca 100644 --- a/src/web/templates/categories.html +++ b/src/web/templates/categories.html @@ -17,7 +17,7 @@ </tr> </thead> <tbody> - {% for category in categories|sort(attribute="name") %} + {% for category in categories %} <tr> <td>{{ loop.index }}</td> <td>{{ category.name }}</td> |