You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
4.7 KiB
137 lines
4.7 KiB
{*
|
|
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 Categories</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 src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
|
<script src="bootstrap/js/bootstrap.min.js"></script>
|
|
<script src="js/jquery.validate.min.js"></script>
|
|
<script src="js/giftreg.js"></script>
|
|
|
|
<script language="JavaScript" type="text/javascript">
|
|
$(document).ready(function() {
|
|
$("#categoryform").validate({
|
|
highlight: validate_highlight,
|
|
success: validate_success,
|
|
rules: {
|
|
category: {
|
|
required: true,
|
|
maxlength: 50
|
|
}
|
|
},
|
|
messages: {
|
|
category: {
|
|
required: "Category name is required.",
|
|
maxlength: "Category name must be 50 characters or less."
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</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-block">{$message|escape:'htmlall'}</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
{if $opt.show_helptext}
|
|
<div class="row">
|
|
<div class="span12">
|
|
<div class="alert alert-info">
|
|
Here you can specify categories <strong>of your own</strong>, like "Motorcycle stuff" or "Collectibles". This will help you categorize your gifts.
|
|
Warning: deleting a category will uncategorize all items that used that category.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
<div class="row">
|
|
<div class="span12">
|
|
<div class="well">
|
|
<h3>Categories</h3>
|
|
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Category</th>
|
|
<th># Items</th>
|
|
<th> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$categories item=row}
|
|
<tr>
|
|
<td>{$row.category|escape:'htmlall'}</td>
|
|
<td>{$row.itemsin}</td>
|
|
<td>
|
|
<a href="categories.php?action=edit&categoryid={$row.categoryid}#catform"><img src="images/pencil.png" border="0" title="Edit Category" alt="Edit Category" /></a>
|
|
<a href="categories.php?action=delete&categoryid={$row.categoryid}"><img src="images/bin.png" border="0" title="Delete Category" alt="Delete Category" /></a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
<h5><a href="categories.php#catform">Add a new category</a></h5>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<a name="catform">
|
|
<div class="row">
|
|
<div class="span12">
|
|
<form name="categoryform" id="categoryform" method="get" action="categories.php" class="well form-horizontal">
|
|
{if isset($action)}
|
|
{if $action == "edit" || (isset($haserror) && $action == "update")}
|
|
<input type="hidden" name="categoryid" value="{$categoryid}">
|
|
<input type="hidden" name="action" value="update">
|
|
{elseif $action == "" || (isset($haserror) && $action == "insert")}
|
|
<input type="hidden" name="action" value="insert">
|
|
{/if}
|
|
{/if}
|
|
<fieldset>
|
|
<legend>{if $action == "edit"}Edit Category '{$category|escape:'htmlall'}'{else}Add Category{/if}</legend>
|
|
<div class="control-group {if isset($category_error)}warning{/if}">
|
|
<label class="control-label" for="category">Category name</label>
|
|
<div class="controls">
|
|
<input id="category" name="category" type="text" class="input-xlarge" value="{$category|escape:'htmlall'}" maxlength="255">
|
|
{if isset($category_error)}
|
|
<span class="help-inline">{$category_error|escape:'htmlall'}</span>
|
|
{/if}
|
|
</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='categories.php';">Cancel</button>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|