brutaldon/brutaldon/context_processors.py
2019-11-08 10:06:45 -05:00

9 lines
297 B
Python

from django.urls import reverse
def bookmarklet_url(request):
share_url = request.build_absolute_uri(reverse("share"))
return {
"bookmarklet_url": f"javascript:location.href='{share_url}?url='+encodeURIComponent(location.href)+';title='+encodeURIComponent(document.title)"
}