jmcclell / django-bootstrap-pagination

Django template tag for rendering Page objects as Bootstrap pagination HTML
MIT License
212 stars 83 forks source link

improve tag state handling (for issue #7) #8

Closed fairview closed 12 years ago

fairview commented 12 years ago

Manipulating self.kwargs in render methods caused problems when using more than one pager per template context. It probably wasn't thread-safe either.

jmcclell commented 12 years ago

This is a good catch. Definitely not thread safe using a reference to self.kwargs. Thanks!