| <div class="alert messages" style="display: none;"></div> |
| <div class="console-section"> |
| <div class="well thingy"> |
| <img src="${picture}" class="gravatar50" /> |
| <div class="title"> |
| {{if path}}<a href="" onclick="Usergrid.console.pageOpenQueryExplorer('${path}'); return false;">{{/if}}${name}{{if path}}</a>{{/if}} |
| </div> |
| <div class="bar"> |
| <a style="margin-right: 15px;" class="btn btn-primary" onclick="Usergrid.console.saveUserProfile('${username}'); return false;">Save User</a> |
| </div> |
| </div> |
| <h3>Edit</h3> |
| <div class="query-result-form"></div> |
| <div class="content-container"> |
| <h3>Contents</h3> |
| <table class="table"> |
| <tbody> |
| <tr class="zebraRows"> |
| <td>UUID</td> |
| <td>${entity.uuid}</td> |
| </tr> |
| <tr class="zebraRows"> |
| <td>Type</td> |
| <td>${entity.type}</td> |
| </tr> |
| <tr class="zebraRows"> |
| <td> |
| Created |
| </td> |
| <td> |
| <a href="#" class="toggleableSP">${dateToString(entity.created)}</a> |
| <a href="#" class="toggleableSP hide">${entity.created}</a> |
| </td> |
| </tr> |
| <tr class="zebraRows"> |
| <td> |
| Modified |
| </td> |
| <td> |
| <a href="#" class="toggleableSP">${dateToString(entity.modified)}</a> |
| <a href="#" class="toggleableSP hide">${entity.modified}</a> |
| </td> |
| </tr> |
| <tr class="zebraRows"> |
| <td>Activated</td> |
| <td>${entity.activated}</td> |
| </tr> |
| <tr class="zebraRows"> |
| <td>Email</td> |
| <td>${entity.email}</td> |
| </tr> |
| <tr class="zebraRows"> |
| <td>Name</td> |
| <td>${entity.name}</td> |
| </tr> |
| <tr class="zebraRows"> |
| <td>Picture</td> |
| <td>${entity.picture}</td> |
| </tr> |
| <tr class="zebraRows"> |
| <td>Username</td> |
| <td>${entity.username}</td> |
| </tr> |
| <tr class="zebraRows"> |
| <td>Path</td> |
| <td><a href="#" onclick="Usergrid.console.pageOpenQueryExplorer('${path}'); return false;">${path}</a></td> |
| </tr> |
| <tr class="zebraRows"> |
| <td>Sets</td> |
| <td> |
| <table class="table table-striped"> |
| <tbody> |
| {{each metadata.sets}} |
| <tr> |
| <td> |
| ${$index} |
| </td> |
| <td> |
| <a href="#" onclick="Usergrid.console.pageOpenQueryExplorer('${$value}'); return false;">${$value}</a> |
| </td> |
| </tr> |
| {{/each}} |
| <tbody> |
| </table> |
| </td> |
| </tr> |
| <tr class="zebraRows"> |
| <td>Collections</td> |
| <td> |
| <table class="table table-striped"> |
| <tbody> |
| {{each metadata.collections}} |
| <tr> |
| <td> |
| ${$index} |
| </td> |
| <td> |
| <a href="#" onclick="Usergrid.console.pageOpenQueryExplorer('${$value}'); return false;">${$value}</a> |
| </td> |
| </tr> |
| {{/each}} |
| <tbody> |
| </table> |
| </td> |
| </tr> |
| </tbody> |
| </table> |
| <h3>JSON</h3> |
| <pre class="query-result-json-inner">${JSON.stringify(entity, null, " ")}</pre> |
| </div> |
| </div> |
| <div id="user-panel-profile-curl-container" class="curl-container"> |
| </div> |