summaryrefslogblamecommitdiffstats
path: root/modules-available/dozmod/templates/userlist.html
blob: 79d4848b30051af22252d8a3d2c70d9655ec08a6 (plain) (tree)
1
2
3
4
5
6
7
8
                                     
 




                                       
                                                   












































                                                                                                                                                       










                                                                                           







                                                                       
             
<h2 id="users">{{lang_userList}}</h2>

<div class="panel panel-default">
	<div class="panel-heading">
		{{lang_userListHeader}}
	</div>
	<div class="panel-body">
		<p>{{lang_userListDescription}}</p>
		<div class="table-responsive">
			<table class="table table-stripped table-condensed">
				<thead>
					<tr>
						<th>{{lang_user}}</th>
						<th>{{lang_organization}}</th>
						<th>{{lang_lastLogin}}</th>
						<th>{{lang_email}}</th>
						<th><span class="glyphicon glyphicon-envelope" title="{{lang_emailNotifications}}"></span></th>
						<th><span class="glyphicon glyphicon-king" title="{{lang_superUser}}"></span></th>
						<th><span class="glyphicon glyphicon-ok" title="{{lang_canLogin}}"></span></th>
					</tr>
				</thead>
				<tbody>
					{{#users}}
					<tr>
						<td class="text-left slx-nowrap">{{lastname}}, {{firstname}}</td>
						<td class="text-left slx-nowrap">{{orgname}}</td>
						<td class="text-left slx-nowrap">{{lastlogin}}</td>
						<td class="text-left slx-nowrap"><a href="mailto:{{email}}">{{email}}</a></td>
						<td><input onclick="setu('setmail', this, '{{userid}}')" type="checkbox" {{{emailnotifications}}}></td>
						<td><input onclick="setu('setsu', this, '{{userid}}')" type="checkbox" {{{issuperuser}}}></td>
						<td><input onclick="setu('setlogin', this, '{{userid}}')" type="checkbox" {{{canlogin}}}></td>
					</tr>
					{{/users}}
				</tbody>
			</table>
		</div>
	</div>
</div>

<script type="text/javascript"><!--

function setu(action, el, uid) {
	var box = $(el);
	var v = el.checked ? '1' : '0';
	var old = el.checked == true;
	box.css('display', 'none');
	$.post('?do=DozMod', { token: TOKEN, action: action, userid: uid, value: v }).done(function (data) {
		if (data != 1 && data != 0) {
			el.checked = !old;
			box.parent().css('background-color', 'red !important');
		} else {
			el.checked = (data == 1);
		}
		/* show success notification */
		$notification = $('<span></span>')
			.addClass('glyphicon glyphicon-saved')
			.css('color', '#2ecc71')
			.css('width', '0px')
			.css('position', 'relative')
			.css('right', '20px')
			.hide();
		box.before($notification);
		$notification.fadeIn('slow', function () {$notification.fadeOut('fast');});

		box.css('display', '');
	}).fail(function() {
		el.checked = !old;
		box.parent().css('background-color', 'red !important');
		box.css('display', '');
	});
}

--> </script>