diff options
author | Jose Lausuch <jose.lausuch@ericsson.com> | 2016-09-21 08:53:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-09-21 08:53:06 +0000 |
commit | 48d9761ffa93170bf9959adfca1ab99f243b03f7 (patch) | |
tree | e6a425b2417001ced8adae57a5e895c82559e720 /tools/pharos-dashboard/templates/dashboard/resource_detail.html | |
parent | 62f409f262557ed5556d2f0151b59562fde49f65 (diff) | |
parent | 3f96bdbe6542c2600def600514d577aea351ff3d (diff) |
Merge "Fix table HTML"
Diffstat (limited to 'tools/pharos-dashboard/templates/dashboard/resource_detail.html')
-rw-r--r-- | tools/pharos-dashboard/templates/dashboard/resource_detail.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/pharos-dashboard/templates/dashboard/resource_detail.html b/tools/pharos-dashboard/templates/dashboard/resource_detail.html index 6067e1ea..657d5656 100644 --- a/tools/pharos-dashboard/templates/dashboard/resource_detail.html +++ b/tools/pharos-dashboard/templates/dashboard/resource_detail.html @@ -164,15 +164,15 @@ <tbody> {% for user in resource.vpn_users.all %} <tr> - <th> + <td> {{ user.username }} - </th> - <th> + </td> + <td> {{ user.email }} - </th> - <th> + </td> + <td> {{ user.userprofile.company }} - </th> + </td> </tr> {% endfor %} </table> |