families page converted
This commit is contained in:
parent
7040459d82
commit
ab7d49d757
2 changed files with 180 additions and 148 deletions
141
src/templates/families.tpl
Normal file
141
src/templates/families.tpl
Normal file
|
@ -0,0 +1,141 @@
|
|||
{*
|
||||
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 Families</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">
|
||||
</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}
|
||||
|
||||
{if $opt.show_helptext}
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
<div class="alert alert-info">
|
||||
Here you can specify families that will use your gift registry. Members may belong to one or more family circles.
|
||||
After adding a new family, click Edit to add members to it.
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
<div class="well">
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Family</th>
|
||||
<th># Members</th>
|
||||
<th> </th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$families item=row}
|
||||
<tr>
|
||||
<td>{$row.familyname|escape:'htmlall'}</td>
|
||||
<td>{$row.members}</td>
|
||||
<td>
|
||||
<a href="families.php?action=edit&familyid={$row.familyid}#familyform"><img src="images/write_obj.gif" alt="Edit Family" title="Edit Family" border="0" /></a>
|
||||
/
|
||||
<a href="families.php?action=delete&familyid={$row.familyid}"><img src="images/remove.gif" alt="Delete Family" title="Delete Family" border="0" /></a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
<h5><a href="families.php">Add a new family</a></h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a name="familyform">
|
||||
<div class="row">
|
||||
<div class="span6">
|
||||
<form name="family" method="get" action="families.php" class="well form-horizontal">
|
||||
{if $action == "edit" || (isset($haserror) && $action == "update")}
|
||||
<input type="hidden" name="familyid" value="{$familyid}">
|
||||
<input type="hidden" name="action" value="update">
|
||||
{elseif $action == "" || (isset($haserror) && $action == "insert")}
|
||||
<input type="hidden" name="action" value="insert">
|
||||
{/if}
|
||||
<fieldset>
|
||||
<legend>{if $action == "edit" || $action == "update"}Edit family '{$familyname|escape:'htmlall'}'{else}Add Family{/if}</legend>
|
||||
<div class="control-group {if isset($familyname_error)}warning{/if}">
|
||||
<label class="control-label" for="familyname">Family name</label>
|
||||
<div class="controls">
|
||||
<input id="familyname" name="familyname" type="text" class="input-xlarge" value="{$familyname|escape:'htmlall'}" maxlength="255">
|
||||
{if isset($familyname_error)}
|
||||
<span class="help-inline">{$familyname_error|escape:'htmlall'}</span>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-actions">
|
||||
<button type="submit" class="btn btn-primary">{if $action == "" || $action == "insert" || $action == "update"}Add{else}Update{/if}</button>
|
||||
<button type="button" class="btn" onClick="document.location.href='families.php';">Cancel</button>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
{if $action == "edit"}
|
||||
<div class="span6">
|
||||
<form name="membership" method="get" action="families.php" class="well form-horizontal">
|
||||
<input type="hidden" name="familyid" value="{$familyid}">
|
||||
<input type="hidden" name="action" value="members">
|
||||
<fieldset>
|
||||
<legend>Members of '{$familyname|escape:'htmlall'}'</legend>
|
||||
<div class="control-group">
|
||||
<label class="control-label" for="members[]">Members</label>
|
||||
<div class="controls">
|
||||
<select name="members[]" size="10" multiple>
|
||||
{foreach from=$nonmembers item=row}
|
||||
<option value="{$row.userid}" {if $row.familyid != ''}SELECTED{/if}>{$row.fullname|escape:'htmlall'}</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
<p class="help-block">(Hold CTRL while clicking to select multiple users.)</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-actions">
|
||||
<button type="submit" class="btn btn-primary">Save</button>
|
||||
<button type="button" class="btn" onClick="document.location.href='families.php';">Cancel</button>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
</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