working auth with CAS

This commit is contained in:
jluiselli 2020-09-15 13:32:11 +02:00
parent bb06a2a084
commit f8f353f3e2
7 changed files with 10 additions and 8 deletions

View file

@ -25,7 +25,7 @@ urlpatterns = [
path('fiche/', include('fiches.urls')),
path('', home, name='home'),
path('birthday', birthday, name='birthday'),
path('login', cas_views.LoginView.as_view(), name='cas_ng_login'),
path('accounts/login/', cas_views.LoginView.as_view(), name='cas_ng_login'),
path('logout', cas_views.LogoutView.as_view(), name='cas_ng_logout'),
]

View file

@ -31,6 +31,8 @@ class Profile(models.Model):
default=False, verbose_name=_("conserver la fiche annuaire ?")
)
def __str__(self):
return self.full_name

View file

@ -27,7 +27,7 @@
<nav>
<a href='{% url "home" %}'> Accueil </a>
<a href='{% url "fiche_modif" %}'> Modifier sa fiche d'annuaire </a>
<a href='{% url "fiche" request.user.profile.id %}'> Consulter sa fiche d'annuaire </a>
<a href='{% url "fiche" request.user.profile.user %}'> Consulter sa fiche d'annuaire </a>
<a href='{% url "birthday" %}'> Anniversaires à venir </a>
{% if user.is_authenticated %}
<a href='{% url "cas_ng_logout" %}'> Se déconnecter</a>

View file

@ -6,7 +6,7 @@
<div>
<ul>
{% for profile in result %}
<li><a href="{% url 'fiche' profile.id %}">{{profile.full_name}}
<li><a href="{% url 'fiche' profile.user.username %}">{{profile.full_name}}
</a> ({{ profile.department.all|join:", " }} {{profile.promotion}}) : {{ profile.birth_date|date:"j F" }} </li>
{% endfor %}
</ul>

View file

@ -11,7 +11,7 @@
<div>
<ul>
{% for profile in result %}
<li><a href="{% url 'fiche' profile.id %}">{{profile.full_name}} ({{ profile.department.all|join:", " }} {{profile.promotion}})
<li><a href="{% url 'fiche' profile.user.username %}">{{profile.full_name}} ({{ profile.department.all|join:", " }} {{profile.promotion}})
</a> </li>
{% endfor %}
</ul>

View file

@ -2,6 +2,6 @@ from django.urls import path
from . import views
urlpatterns = [
path("<int:id>", views.fiche, name="fiche"),
path("edit", views.fiche_modif, name="fiche_modif"),
path("<user>", views.fiche, name="fiche"),
]

View file

@ -12,8 +12,8 @@ from django.template.loader import render_to_string
@login_required
def fiche(request, id):
profile = get_object_or_404(Profile, id=id)
def fiche(request, user):
profile = get_object_or_404(Profile, user__username=user)
return render(request, "fiches/fiche.html", {"profile": profile})
@ -31,7 +31,7 @@ def fiche_modif(request):
["{}@clipper.ens.psl.eu".format(request.user.username)],
fail_silently=False,
)
return redirect(reverse("fiche", args=(profile.id,)))
return redirect(reverse("fiche", args=(profile.user,)))
else:
form = ProfileForm(instance=profile)