Last active
December 7, 2017 12:59
-
-
Save martinsam/1c8f7fda0287ad958941b8976b40b2af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# python2.7/site-packages/debug_toolbar/templates/debug_toolbar/panels/templates.html: | |
# L18 | |
<dd><samp><a href="file://{{ template.template.origin_name|addslashes }}">{{ template.template.origin_name|addslashes }}</a></samp></dd>` | |
# python2.7/site-packages/debug_toolbar/panels/request_vars.py | |
#L52 | |
from django.conf import settings | |
personal_path = ('file:///%s/%s.py') % ( | |
settings.HOME, | |
self.view_func.__module__.replace('.', '/')) | |
# python2.7/site-packages/debug_toolbar/templates/debug_toolbar/panels/request_vars.html | |
# L14 | |
<td><a href="{{personal_path}}">{{ view_func }}</a></td> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment