Added order to charter members

This commit is contained in:
2018-01-14 21:10:47 -05:00
parent 3346a3a6ec
commit 3c5b64db0b
6 changed files with 43 additions and 2 deletions

View File

@ -13,7 +13,7 @@ from OACPL import settings
def index(request):
attorneys = Attorney.objects.filter(front_page=True)
attorneys = Attorney.objects.filter(front_page=True).order_by('order')
return render(request, 'index.html', {'attorneys': attorneys, 'contact': settings.EMAIL_CONTACT})