Skip to content

Instantly share code, notes, and snippets.

@jmcclell
jmcclell / django-paginator-bootstrap.html
Created January 6, 2012 06:02
Django Paginator Bootstrap Compatible Template Snippet
{#
This template snippet will take a page from a django Paginator and create a Twitter Bootstrap pagination HTML snippet.
To use:
{% include "path/to/django-paginator-bootstrap.html with page=contextVar only %}
Optional variables:
alignment - Accepts "centered" or "right". Other values have no affect. Default is left aligned.
@jmcclell
jmcclell / stackoverflow_rep.py
Created December 14, 2011 16:57
Django template tag for retrieving Stackoverflow reputation score via Py-StackExchange
'''
Template tag for returning Stackoverflow reputation
Requires Py-StackExchange (https://github.com/lucjon/Py-StackExchange/)
This isn't really meant to be consumed as-is for the following reasons:
1. Built in logic for caching isn't ideal for making this distributable
2. Having a template tag reach out to a 3rd party server could cause
performance issues when rendering a template if the 3rd party server 404s