parent
14eb1691c5
commit
56f1af7ea0
@ -1,22 +0,0 @@
|
||||
from django import template
|
||||
from django.urls import reverse
|
||||
|
||||
from oauth.oauthmanager import get_oauth_apps
|
||||
|
||||
register = template.Library()
|
||||
|
||||
|
||||
@register.inclusion_tag('oauth/oauth_applications.html')
|
||||
def load_oauth_applications(request):
|
||||
applications = get_oauth_apps()
|
||||
if applications:
|
||||
baseurl = reverse('oauth:oauthlogin')
|
||||
path = request.get_full_path()
|
||||
|
||||
apps = list(map(lambda x: (x.ICON_NAME, '{baseurl}?type={type}&next_url={next}'.format(
|
||||
baseurl=baseurl, type=x.ICON_NAME, next=path)), applications))
|
||||
else:
|
||||
apps = []
|
||||
return {
|
||||
'apps': apps
|
||||
}
|
||||
Loading…
Reference in new issue