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