ページネーションに表示された数字を返す関数を作りました。私はこのようなものを取得したいです (括弧はアクティブなサイトの唯一のショーです):
ページが 10 未満の場合
1 2 3 4 5 6 7 8 9 10
ページ > 10 の場合
1 2 3 ... 20 [30] 40 ... 78 79 80
[30] はアクティブなページです。アクティブなページが 3 未満の場合
1 2 [3] 4 ... 20 30 40 ... 78 79 80
など私のコード:
count_all - number of all items
items_on_page - items displayed on one page
page - current page
countpages = int(float(count_all+(items_on_page-1))/float(items_on_page))
linkitems = 10
if countpages > (linkitems-1):
countpagesstr = list()
for i in range(1,int(float(linkitems+(2))/float(3))):
countpagesstr += [str(i)]
countpagesstr += ['...']
sr = int(countpages/2)
for i in range(sr-1, sr+1):
countpagesstr += [str(i)]
countpagesstr += ['...']
for i in range(countpages-3, countpages):
countpagesstr += [str(i)]
else:
cp = list()
for c in range(1,countpages+1):
cp.append(str(c))
countpagesstr = cp
return countpagesstr
それをより良くする方法は?