mirror of
https://github.com/welton89/RRBEC.git
synced 2026-04-05 21:45:41 +00:00
8 lines
196 B
Python
8 lines
196 B
Python
from django.shortcuts import render
|
|
from django.contrib.auth.models import User
|
|
|
|
from gestaoRaul.decorators import group_required
|
|
|
|
|
|
def clients(request):
|
|
return render(request, 'clients.html') |