mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 22:50:26 +00:00
Merge pull request #766 from frei-style/sort_accounts
Sort accounts by name on 'New Domain' and domain 'Admin'
This commit is contained in:
commit
b5fc9045f2
@ -235,7 +235,7 @@ def add():
|
|||||||
abort(500)
|
abort(500)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
accounts = Account.query.all()
|
accounts = Account.query.order_by(Account.name).all()
|
||||||
return render_template('domain_add.html',
|
return render_template('domain_add.html',
|
||||||
templates=templates,
|
templates=templates,
|
||||||
accounts=accounts)
|
accounts=accounts)
|
||||||
@ -267,7 +267,7 @@ def setting(domain_name):
|
|||||||
if not domain:
|
if not domain:
|
||||||
abort(404)
|
abort(404)
|
||||||
users = User.query.all()
|
users = User.query.all()
|
||||||
accounts = Account.query.all()
|
accounts = Account.query.order_by(Account.name).all()
|
||||||
|
|
||||||
# get list of user ids to initialize selection data
|
# get list of user ids to initialize selection data
|
||||||
d = Domain(name=domain_name)
|
d = Domain(name=domain_name)
|
||||||
|
Loading…
Reference in New Issue
Block a user