fmartingr
/
shelfzilla
Archived
1
0
Fork 0

Added "other" filter to series listing

This commit is contained in:
Felipe Martin 2014-04-04 18:24:14 +02:00
parent 9e477bd092
commit 9c519e5764
1 changed files with 1 additions and 2 deletions

View File

@ -38,8 +38,7 @@ class SeriesListView(SeriesView):
elif letter == 'all':
result = Series.objects.all()
elif letter == 'other':
# result = Series.objects.filter(name__regex=r'')
result = []
result = Series.objects.exclude(name__regex=r'^[a-zA-Z]')
return result