users page converted
This commit is contained in:
parent
299f91e596
commit
7040459d82
2 changed files with 184 additions and 150 deletions
148
src/templates/users.tpl
Normal file
148
src/templates/users.tpl
Normal file
|
@ -0,0 +1,148 @@
|
|||
{*
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*}
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Gift Registry - Manage Users</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
|
||||
|
||||
<script language="JavaScript" type="text/javascript">
|
||||
function confirmDelete(fullname) {
|
||||
return confirm("Are you sure you want to delete " + fullname + "?");
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
{include file='navbar.tpl' isadmin=$isadmin}
|
||||
|
||||
<div class="container" style="padding-top: 60px;">
|
||||
|
||||
{if isset($message)}
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
<div class="alert alert-info">{$message|escape:'htmlall'}</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
<div class="well">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Username</th>
|
||||
<th>Fullname</th>
|
||||
<th>E-mail</th>
|
||||
<th>E-mail messages?</th>
|
||||
<th>Approved?</th>
|
||||
<th>Admin?</th>
|
||||
<th> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$users item=row}
|
||||
<tr>
|
||||
<td>{$row.username}</td>
|
||||
<td>{$row.fullname}</td>
|
||||
<td>{$row.email}</td>
|
||||
<td>{if $row.email_msgs}Yes{else}No{/if}</td>
|
||||
<td>{if $row.approved}Yes{else}No{/if}</td>
|
||||
<td>{if $row.admin}Yes{else}No{/if}</td>
|
||||
<td align="right">
|
||||
<a href="users.php?action=edit&userid={$row.userid}#userform"><img alt="Edit User" src="images/write_obj.gif" border="0" title="Edit User" /></a> /
|
||||
<a onClick="return confirmDelete('{$row.fullname|escape:'htmlall'}');" href="users.php?action=delete&userid={$row.userid}"><img alt="Delete User" src="images/remove.gif" border="0" title="Delete User" /></a> /
|
||||
{if $row.email != ''}
|
||||
<a href="users.php?action=reset&userid={$row.userid}&email={$row.email|escape:'htmlall'}">Reset Pwd</a>
|
||||
{else}
|
||||
Reset Pwd
|
||||
{/if}
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
<h5><a href="users.php">Add a new user</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a name="userform">
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
<form name="users" method="get" action="users.php" class="well form-horizontal">
|
||||
{if $action == "edit" || (isset($haserror) && $action == "update")}
|
||||
<input type="hidden" name="userid" value="{$userid}">
|
||||
<input type="hidden" name="action" value="update">
|
||||
{else if $action == "" || (isset($haserror) && $action == "insert")}
|
||||
<input type="hidden" name="action" value="insert">
|
||||
{/if}
|
||||
<fieldset>
|
||||
<legend>{if $action == "edit" || $action == "update"}Edit User{else}Add User{/if}</legend>
|
||||
<div class="control-group {if isset($username_error)}warning{/if}">
|
||||
<label class="control-label" for="username">Username</label>
|
||||
<div class="controls">
|
||||
<input id="username" name="username" type="text" class="input-xlarge" value="{$username|escape:'htmlall'}" maxlength="255">
|
||||
{if isset($username_error)}
|
||||
<span class="help-inline">{$username_error|escape:'htmlall'}</span>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group {if isset($fullname_error)}warning{/if}">
|
||||
<label class="control-label" for="fullname">Full name</label>
|
||||
<div class="controls">
|
||||
<input id="fullname" name="fullname" type="text" class="input-xlarge" value="{$fullname|escape:'htmlall'}" maxlength="255">
|
||||
{if isset($fullname_error)}
|
||||
<span class="help-inline">{$fullname_error|escape:'htmlall'}</span>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group {if isset($email_error)}warning{/if}">
|
||||
<label class="control-label" for="email">E-mail address</label>
|
||||
<div class="controls">
|
||||
<input id="email" name="email" type="text" class="input-xlarge" value="{$email|escape:'htmlall'}" maxlength="255">
|
||||
{if isset($email_error)}
|
||||
<span class="help-inline">{$email_error|escape:'htmlall'}</span>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<label class="control-label">Flags</label>
|
||||
<div class="controls">
|
||||
<input type="checkbox" name="email_msgs" {if $email_msgs}CHECKED{/if}>
|
||||
E-mail messages
|
||||
<input type="checkbox" name="approved" {if $approved}CHECKED{/if}>
|
||||
Approved
|
||||
<input type="checkbox" name="admin" {if $userisadmin}CHECKED{/if}>
|
||||
Administrator
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-actions">
|
||||
<button type="submit" class="btn btn-primary">{if $action == "" || $action == "insert"}Add{else}Update{/if}</button>
|
||||
<button type="button" class="btn" onClick="document.location.href='users.php';">Cancel</button>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
||||
<script src="bootstrap/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue