mirror of
https://github.com/ansible/awx.git
synced 2026-05-17 22:37:41 -02:30
Users can now be added from the Users tab.
This commit is contained in:
@@ -377,7 +377,7 @@ angular.module('FormGenerator', ['GeneratorHelpers'])
|
||||
}
|
||||
|
||||
//lookup type fields
|
||||
if (field.type == 'lookup') {
|
||||
if (field.type == 'lookup' && (field.excludeMode == undefined || field.excludeMode != options.mode)) {
|
||||
html += "<div class=\"control-group\""
|
||||
html += (field.ngShow) ? this.attr(field,'ngShow') : "";
|
||||
html += ">\n";
|
||||
|
||||
@@ -146,7 +146,7 @@ angular.module('ListGenerator', ['GeneratorHelpers',])
|
||||
|
||||
if (options.mode != 'lookup') {
|
||||
//actions
|
||||
base = $location.path().replace(/^\//,'').split('/')[0];
|
||||
var base = $location.path().replace(/^\//,'').split('/')[0];
|
||||
html += "<div class=\"list-actions\">\n";
|
||||
for (action in list.actions) {
|
||||
if (list.actions[action].mode == 'all' || list.actions[action].mode == options.mode) {
|
||||
|
||||
Reference in New Issue
Block a user