2017-10-23 23:39:16 -04:00
|
|
|
from django.views.generic.base import RedirectView
|
2019-01-23 20:28:55 -05:00
|
|
|
from django.templatetags.static import static
|
2017-10-23 23:39:16 -04:00
|
|
|
|
|
|
|
|
|
|
|
def redirect_to_static(file):
|
|
|
|
return RedirectView.as_view(url=static('wellknowns/' + file))
|
|
|
|
|
|
|
|
|
|
|
|
keybase = redirect_to_static('keybase.txt')
|