page order fixed
This commit is contained in:
parent
3fc2d2c4fe
commit
b8cbc66e9d
|
@ -643,7 +643,7 @@ def article_pdf(request):
|
|||
dpi = request.GET.get('dpi', 300)
|
||||
width_mm = request.GET.get('width', article.typ.print_width)
|
||||
height_mm = int(width_mm // article.typ.aspect_ratio)
|
||||
pages = Page.objects.filter(article=article)
|
||||
pages = Page.objects.filter(article=article).order_by('page_no')
|
||||
m = article.get_print_multiplier(dpi)
|
||||
url = SITE_BASE + "/edit/view_article/%d/?m=%f" % (article.id, m)
|
||||
# url_list = [url]
|
||||
|
|
|
@ -55,13 +55,13 @@ def convertFile(**kwargs):
|
|||
fname = str(f.file)
|
||||
ext = e.models.extFileName(fname)
|
||||
f.ext = ext
|
||||
if f.ext in ['jpg', 'JPG', 'jpeg', 'JPEG', 'png', 'PNG']:
|
||||
if f.ext.lower() in ['jpg', 'jpeg', 'png']:
|
||||
f.type = 'image'
|
||||
elif f.ext in ['ogg', 'oga']:
|
||||
elif f.ext.lower() in ['ogg', 'oga']:
|
||||
f.type = 'audio'
|
||||
elif f.ext in ['ogv']:
|
||||
elif f.ext.lower() in ['ogv']:
|
||||
f.type = 'video'
|
||||
elif f.ext in ['doc', 'pdf', 'rtf', 'txt']:
|
||||
elif f.ext.lower() in ['doc', 'pdf', 'rtf', 'txt']:
|
||||
f.type = 'text'
|
||||
else:
|
||||
f.type = 'other'
|
||||
|
|
Loading…
Reference in New Issue
Block a user