summaryrefslogtreecommitdiffstats
path: root/admin/templates/users.php
blob: 8e34c908fcdcefc660903f3b796078e2e8674c63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<div id="controls">
	<form id="newgroup">
		<input id="newgroupname" placeholder="name"></input>
		<input type="submit" value="create"></input>
	</form>
	<form id="newuser">
		<input id="newusername" placeholder="username"></input>
		<input type="password" id="newuserpassword" placeholder="password"></input>
		<select id="newusergroups" data-placeholder="groups" title="groups" multiple="multiple">
			<?php foreach($_["groups"] as $group): ?>
				<option value="<?php echo $group['name'];?>"><?php echo $group['name'];?></option>
			<?php endforeach;?>
		</select>
		<input type="submit" value="Create"></input>
	</form>
</div>
<ul id="leftcontent">
	<?php foreach($_["groups"] as $group): ?>
		<li data-gid="<?php echo $group["name"]; ?>">
			<?php echo $group["name"] ?>
		</li>
	<?php endforeach; ?>
</ul>
<div id="rightcontent">
	<table>
		<?php foreach($_["users"] as $user): ?>
			<tr data-uid="<?php echo $user["name"] ?>">
				<td class="select"><input type="checkbox"></input></td>
				<td class="name"><?php echo $user["name"]; ?></td>
				<td class="groups"><?php if( $user["groups"] ){ echo $user["groups"]; }else{echo "&nbsp";} ?></td>
				<td class="remove">
					<?php if($user['name']!=OC_User::getUser()):?>
						<img alt="Remove" title="Remove" class='svg' src='<?php echo image_path('core','actions/delete.svg') ?>'/>
					<?php endif;?>
				</td>
			</tr>
		<?php endforeach; ?>
	</table>
</div>