Show More
@@ -61,7 +61,7 b'' | |||
|
61 | 61 | {% ifequal page current_page.number %} |
|
62 | 62 | class="current_page" |
|
63 | 63 | {% endifequal %} |
|
64 |
href="{% |
|
|
64 | href="{% page_url paginator page %}">{{ page }}</a> | |
|
65 | 65 | {% if not forloop.last %},{% endif %} |
|
66 | 66 | {% endfor %} |
|
67 | 67 | {% endwith %} |
@@ -47,12 +47,14 b' class FeedView(PostMixin, BaseBoardView)' | |||
|
47 | 47 | additional_params['tripcode'] = tripcode |
|
48 | 48 | params[PARAMETER_ADDITONAL_ATTRS] = '&tripcode=' + tripcode |
|
49 | 49 | |
|
50 | self.get_page_context(paginator, params, page, additional_params) | |
|
50 | paginator.set_url(reverse('feed'), request.GET.dict()) | |
|
51 | ||
|
52 | self.get_page_context(paginator, params, page) | |
|
51 | 53 | |
|
52 | 54 | return render(request, TEMPLATE, params) |
|
53 | 55 | |
|
54 | 56 | # TODO Dedup this into PagedMixin |
|
55 |
def get_page_context(self, paginator, params, page |
|
|
57 | def get_page_context(self, paginator, params, page): | |
|
56 | 58 | """ |
|
57 | 59 | Get pagination context variables |
|
58 | 60 | """ |
@@ -61,21 +63,9 b' class FeedView(PostMixin, BaseBoardView)' | |||
|
61 | 63 | current_page = paginator.page(int(page)) |
|
62 | 64 | params[PARAMETER_CURRENT_PAGE] = current_page |
|
63 | 65 | if current_page.has_previous(): |
|
64 |
params[PARAMETER_PREV_LINK] = |
|
|
65 | current_page) | |
|
66 | for param in additional_params.keys(): | |
|
67 | params[PARAMETER_PREV_LINK] += '&{}={}'.format( | |
|
68 | param, additional_params[param]) | |
|
66 | params[PARAMETER_PREV_LINK] = paginator.get_page_url( | |
|
67 | current_page.previous_page_number()) | |
|
69 | 68 | if current_page.has_next(): |
|
70 |
params[PARAMETER_NEXT_LINK] = |
|
|
71 | for param in additional_params.keys(): | |
|
72 | params[PARAMETER_NEXT_LINK] += '&{}={}'.format( | |
|
73 | param, additional_params[param]) | |
|
69 | params[PARAMETER_NEXT_LINK] = paginator.get_page_url( | |
|
70 | current_page.next_page_number()) | |
|
74 | 71 | |
|
75 | def get_previous_page_link(self, current_page): | |
|
76 | return reverse('feed') + '?page={}'.format( | |
|
77 | current_page.previous_page_number()) | |
|
78 | ||
|
79 | def get_next_page_link(self, current_page): | |
|
80 | return reverse('feed') + '?page={}'.format( | |
|
81 | current_page.next_page_number()) |
General Comments 0
You need to be logged in to leave comments.
Login now