mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-09 03:54:08 +00:00
13 lines
346 B
Python
13 lines
346 B
Python
from django.shortcuts import render_to_response
|
|
|
|
from pgweb.util.contexts import NavContext
|
|
|
|
from models import ContributorType
|
|
|
|
def completelist(request):
|
|
contributortypes = list(ContributorType.objects.all())
|
|
return render_to_response('contributors/list.html', {
|
|
'contributortypes': contributortypes,
|
|
}, NavContext(request, 'community'))
|
|
|