9 lines
252 B
Python
9 lines
252 B
Python
"""Page d'installation du favori « Indy → CSV »."""
|
|
from django.contrib.auth.decorators import login_required
|
|
from django.shortcuts import render
|
|
|
|
|
|
@login_required
|
|
def bookmarklet(request):
|
|
return render(request, "compta/bookmarklet.html", {})
|