mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-13 13:12:42 +00:00
11 lines
297 B
Python
11 lines
297 B
Python
from pgweb.util.contexts import render_pgweb
|
|
|
|
from .models import ContributorType
|
|
|
|
|
|
def completelist(request):
|
|
contributortypes = list(ContributorType.objects.all())
|
|
return render_pgweb(request, 'community', 'contributors/list.html', {
|
|
'contributortypes': contributortypes,
|
|
})
|