Fix xorg auth url
[xnet] / xnet / templates / xnet / home.html
CommitLineData
33234b2f
RB
1{% extends "base.html" %}
2{% load url from future %}
3
4{% block content %}
5{% if user.is_authenticated %}
66ae88f4 6 <h1>Welcome, {{ user.get_full_name }}</h1>
33234b2f 7{% else %}
66ae88f4 8 <h1>Authenticate</h1>
3fb21368 9 <p><a href="{% url 'authgroupex:login' %}?next=/" />Connect through X.org</a></p>
33234b2f
RB
10{% endif %}
11{% endblock %}