mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-08 14:40:27 +00:00
Order accounts by name on 'New Domain' and domain admin
This commit is contained in:
parent
4e63f8380b
commit
9946f72a85
@ -235,7 +235,7 @@ def add():
|
||||
abort(500)
|
||||
|
||||
else:
|
||||
accounts = Account.query.all()
|
||||
accounts = Account.query.order_by(Account.name).all()
|
||||
return render_template('domain_add.html',
|
||||
templates=templates,
|
||||
accounts=accounts)
|
||||
@ -267,7 +267,7 @@ def setting(domain_name):
|
||||
if not domain:
|
||||
abort(404)
|
||||
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
|
||||
d = Domain(name=domain_name)
|
||||
|
Loading…
Reference in New Issue
Block a user