woodpecker/cmd/drone-server/static/scripts/views/users.html

52 lines
1.5 KiB
HTML
Raw Normal View History

2015-05-21 02:23:55 +00:00
<header>
<a class="logo float-left" href="/"></a>
<a class="menu-item settings float-right" href="/profile"></a>
<a class="menu-item users float-right" href="/users" ng-if="user.admin"></a>
<a class="menu-item help float-right" href="http://readme.drone.io" target="_blank"></a>
<a class="menu-item user-name float-right" href="/profile">{{ "+"+user.login }}</a>
</header>
2015-04-08 22:43:59 +00:00
2015-05-21 02:23:55 +00:00
<header show-nav distance="160" class="dockable transition-fade flex-parent"></header>
<section class="central-container">
<div class="flex-item pane restrict-center contains-cardset">
<div class="breadcrumb flex-item truncate">
<a href="/" class="backarrow"></a>
<a href="#" class="level">User Management</a>
</div>
</div>
</section>
2015-04-08 22:43:59 +00:00
<table border="1">
<thead>
<tr>
<th>Login</th>
<th>Full Name</th>
<th>Created</th>
<th>Updated</th>
<th>Email</th>
<th>Site Admin</th>
<th>Gravatar</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="user in users">
<td>{{ user.login }}</td>
<td>{{ user.name }}</td>
<td>{{ user.created_at | fromNow }}</td>
<td>{{ user.updated_at | fromNow }}</td>
<td>{{ user.email }}</td>
<td>{{ !!user.admin }}</td>
<td><img ng-src="{{ user.gravatar_id | gravatar }}" /></td>
<td><button ng-click="toggle(user)">toggle admin</button></td>
<td><button ng-click="remove(user)">delete</button></td>
</tr>
</tbody>
</table>
<form>
<input type="text" ng-model="login" />
<button ng-click="add(login)">Add</button>
2015-05-21 02:23:55 +00:00
</form>