#35: partly fix except austria is at the bottom

This commit is contained in:
koksnuss 2020-05-27 15:47:49 +02:00
parent e65d42f4ac
commit dafcaf10c9

View File

@ -31,7 +31,7 @@ def index(request):
''' index view '''
template = loader.get_template('coinc/index.html')
countrys = Country.objects.order_by('name_iso')
countrys = Country.objects.order_by('name')
users = User.objects.order_by('id')
context = {
'countrys': countrys,