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):
|
||||
return {
|
||||
'name': org.username,
|
||||
'email': org.email,
|
||||
'avatar': avatar.get_data_for_org(org),
|
||||
}
|
||||
|
||||
|
|
|
@ -106,6 +106,7 @@
|
|||
<thead>
|
||||
<td style="width: 24px;"></td>
|
||||
<td>Name</td>
|
||||
<td>Admin E-mail</td>
|
||||
<td style="width: 24px;"></td>
|
||||
</thead>
|
||||
|
||||
|
@ -117,6 +118,9 @@
|
|||
<td>
|
||||
{{ current_org.name }}
|
||||
</td>
|
||||
<td>
|
||||
<a href="mailto:{{ current_org.email }}">{{ current_org.email }}</a>
|
||||
</td>
|
||||
<td style="text-align: center;">
|
||||
<span class="cor-options-menu">
|
||||
<span class="cor-option" option-click="askRenameOrganization(current_org)">
|
||||
|
|
Reference in a new issue