Add org email address to orgs list
This commit is contained in:
parent
ad5beab3ef
commit
a37b9394d9
2 changed files with 5 additions and 0 deletions
|
@ -131,6 +131,7 @@ class SuperUserLogs(ApiResource):
|
||||||
def org_view(org):
|
def org_view(org):
|
||||||
return {
|
return {
|
||||||
'name': org.username,
|
'name': org.username,
|
||||||
|
'email': org.email,
|
||||||
'avatar': avatar.get_data_for_org(org),
|
'avatar': avatar.get_data_for_org(org),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -106,6 +106,7 @@
|
||||||
<thead>
|
<thead>
|
||||||
<td style="width: 24px;"></td>
|
<td style="width: 24px;"></td>
|
||||||
<td>Name</td>
|
<td>Name</td>
|
||||||
|
<td>Admin E-mail</td>
|
||||||
<td style="width: 24px;"></td>
|
<td style="width: 24px;"></td>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
||||||
|
@ -117,6 +118,9 @@
|
||||||
<td>
|
<td>
|
||||||
{{ current_org.name }}
|
{{ current_org.name }}
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
<a href="mailto:{{ current_org.email }}">{{ current_org.email }}</a>
|
||||||
|
</td>
|
||||||
<td style="text-align: center;">
|
<td style="text-align: center;">
|
||||||
<span class="cor-options-menu">
|
<span class="cor-options-menu">
|
||||||
<span class="cor-option" option-click="askRenameOrganization(current_org)">
|
<span class="cor-option" option-click="askRenameOrganization(current_org)">
|
||||||
|
|
Reference in a new issue