Skip to content

Instantly share code, notes, and snippets.

@jheasly
Created July 9, 2015 01:53
Show Gist options
  • Select an option

  • Save jheasly/4773f1a43decd3f3062b to your computer and use it in GitHub Desktop.

Select an option

Save jheasly/4773f1a43decd3f3062b to your computer and use it in GitHub Desktop.
#main/contexts.py
from django.core.urlresolvers import resolve, Resolver404
def appname(request):
try:
app_label = resolve(request.path).app_name
except Resolver404:
app_label = None
return {'appname': app_label}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment