Slight improvements to admin view
This commit is contained in:
parent
ca41c481b1
commit
cd41532572
2 changed files with 30 additions and 8 deletions
20
admin.go
20
admin.go
|
@ -121,7 +121,8 @@ type AdminLDAPTplData struct {
|
|||
DN string
|
||||
|
||||
Path []PathItem
|
||||
Children []Child
|
||||
ChildrenOU []Child
|
||||
ChildrenOther []Child
|
||||
CanAddChild bool
|
||||
Props map[string]*PropValues
|
||||
CanDelete bool
|
||||
|
@ -499,17 +500,23 @@ func handleAdminLDAP(w http.ResponseWriter, r *http.Request) {
|
|||
|
||||
sort.Sort(EntryList(sr.Entries))
|
||||
|
||||
children := []Child{}
|
||||
childrenOU := []Child{}
|
||||
childrenOther := []Child{}
|
||||
for _, item := range sr.Entries {
|
||||
name := item.GetAttributeValue("displayname")
|
||||
if name == "" {
|
||||
name = item.GetAttributeValue("description")
|
||||
}
|
||||
children = append(children, Child{
|
||||
child := Child{
|
||||
DN: item.DN,
|
||||
Identifier: strings.Split(item.DN, ",")[0],
|
||||
Name: name,
|
||||
})
|
||||
}
|
||||
if strings.HasPrefix(item.DN, "ou=") {
|
||||
childrenOU = append(childrenOU, child)
|
||||
} else {
|
||||
childrenOther = append(childrenOther, child)
|
||||
}
|
||||
}
|
||||
|
||||
// Run template, finally!
|
||||
|
@ -517,10 +524,11 @@ func handleAdminLDAP(w http.ResponseWriter, r *http.Request) {
|
|||
DN: dn,
|
||||
|
||||
Path: path,
|
||||
Children: children,
|
||||
ChildrenOU: childrenOU,
|
||||
ChildrenOther: childrenOther,
|
||||
Props: props,
|
||||
CanAddChild: dn_last_attr == "ou" || isOrganization,
|
||||
CanDelete: dn != config.BaseDN && len(children) == 0,
|
||||
CanDelete: dn != config.BaseDN && len(childrenOU) == 0 && len(childrenOther) == 0,
|
||||
|
||||
HasMembers: len(members) > 0 || hasMembers,
|
||||
Members: members,
|
||||
|
|
|
@ -23,7 +23,17 @@
|
|||
|
||||
<table class="table mt-4">
|
||||
<tbody>
|
||||
{{range .Children}}
|
||||
{{range .ChildrenOU}}
|
||||
<tr>
|
||||
<td>
|
||||
<a href="/admin/ldap/{{.DN}}">
|
||||
🗀 {{.Identifier}}
|
||||
</a>
|
||||
</td>
|
||||
<td>{{.Name}}</td>
|
||||
</tr>
|
||||
{{end}}
|
||||
{{range .ChildrenOther}}
|
||||
<tr>
|
||||
<td>
|
||||
<a href="/admin/ldap/{{.DN}}">
|
||||
|
@ -94,7 +104,11 @@
|
|||
<div class="col-md-3"><strong>{{$key}}</strong></div>
|
||||
<div class="col-md-9">
|
||||
{{range $value.Values}}
|
||||
<div>{{.}}</div>
|
||||
{{if eq $key "creatorsname" "modifiersname" }}
|
||||
<div><a href="/admin/ldap/{{.}}">{{.}}</a></div>
|
||||
{{else}}
|
||||
<div>{{.}}</div>
|
||||
{{end}}
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue