2007-08-12 06:53:18 -05:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<?python import sitetemplate ?>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#" py:extends="sitetemplate">
|
|
|
|
|
|
|
|
<head py:match="item.tag=='{http://www.w3.org/1999/xhtml}head'" py:attrs="item.items()">
|
|
|
|
<meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/>
|
|
|
|
<title py:replace="''">Your title goes here</title>
|
|
|
|
<meta py:replace="item[:]"/>
|
|
|
|
<style type="text/css" media="screen">
|
|
|
|
@import "${tg.url('/static/css/style.css')}";
|
|
|
|
</style>
|
2007-08-14 11:40:13 -05:00
|
|
|
<script type="text/javascript" charset="utf-8" src="${tg.url('/static/javascript/prototype.js')}"></script>
|
2007-08-30 17:10:48 -05:00
|
|
|
<script type="text/javascript" charset="utf-8" src="${tg.url('/static/javascript/scriptaculous.js?load=effects')}"></script>
|
2007-08-12 06:53:18 -05:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body py:match="item.tag=='{http://www.w3.org/1999/xhtml}body'" py:attrs="item.items()">
|
|
|
|
|
2007-09-06 13:09:12 -05:00
|
|
|
<div id="header">
|
|
|
|
<div id="logo">
|
|
|
|
<a href="${tg.url('/')}"><img
|
|
|
|
src="${tg.url('/static/images/logo.png')}"
|
2007-09-10 12:02:33 -05:00
|
|
|
border="0" alt="homepage"
|
2007-09-06 13:09:12 -05:00
|
|
|
/></a>
|
|
|
|
</div>
|
|
|
|
<div id="headerinfo">
|
2007-09-05 18:59:55 -05:00
|
|
|
<div id="login">
|
2007-09-10 15:33:01 -05:00
|
|
|
<div py:if="tg.config('identity.on') and not defined('logging_in')" id="pageLogin">
|
|
|
|
<span py:if="tg.identity.anonymous">
|
|
|
|
<a href="${tg.url('/login')}">Login</a>
|
|
|
|
</span>
|
|
|
|
<span py:if="not tg.identity.anonymous">
|
|
|
|
Logged in as: ${tg.identity.user.display_name}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
2007-09-05 18:59:55 -05:00
|
|
|
</div>
|
2007-09-06 13:09:12 -05:00
|
|
|
<div id="topsearch">
|
|
|
|
<form action="${tg.url('/topsearch')}" method="post">
|
|
|
|
<select name="searchtype">
|
|
|
|
<option>Users</option>
|
|
|
|
<option>Groups</option>
|
|
|
|
</select>
|
|
|
|
<input class="searchtext" id="topsearchbox" type="text"
|
|
|
|
name="searchvalue"
|
|
|
|
value="Type search terms here."
|
|
|
|
onfocus="clearsearch()" />
|
|
|
|
<input type="submit" value="Search"/>
|
|
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
|
|
function clearsearch() {
|
|
|
|
topsearchbox = document.getElementById('topsearchbox');
|
|
|
|
topsearchbox.onfocus = null;
|
|
|
|
topsearchbox.value = "";
|
|
|
|
}
|
|
|
|
</script>
|
2007-09-05 18:59:55 -05:00
|
|
|
</div>
|
2007-08-12 06:53:18 -05:00
|
|
|
</div>
|
2007-09-06 13:09:12 -05:00
|
|
|
</div>
|
2007-08-12 06:53:18 -05:00
|
|
|
|
2007-09-06 13:09:12 -05:00
|
|
|
<div id="page">
|
2007-08-29 18:49:46 -05:00
|
|
|
<div id="nav"><!--
|
|
|
|
This used to have links. Keeping around in case we move them back...
|
|
|
|
--></div>
|
|
|
|
|
|
|
|
<div id="sidebar">
|
|
|
|
<h2>Tasks</h2>
|
2007-09-05 18:59:55 -05:00
|
|
|
<p>
|
2007-08-29 18:49:46 -05:00
|
|
|
<a href="${tg.url('/usernew')}">Add Person</a><br/>
|
|
|
|
<a href="${tg.url('/userlist')}">Find People</a><br/>
|
2007-09-05 18:59:55 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2007-08-29 18:49:46 -05:00
|
|
|
<a href="${tg.url('/groupindex')}">Add Group</a><br/>
|
|
|
|
<a href="${tg.url('/groupindex')}">Find Groups</a><br/>
|
2007-09-05 18:59:55 -05:00
|
|
|
</p>
|
|
|
|
<p>
|
2007-08-29 18:49:46 -05:00
|
|
|
<a href="${tg.url('/')}">Manage Policy</a><br/>
|
|
|
|
<a href="${tg.url('/')}">Self Service</a><br/>
|
2007-09-05 18:59:55 -05:00
|
|
|
</p>
|
2007-08-12 06:53:18 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div py:replace="[item.text]+item[:]"></div>
|
|
|
|
|
|
|
|
|
|
|
|
<div id="footer">
|
2007-09-05 18:59:55 -05:00
|
|
|
<a href="http://www.freeipa.com/" target="_blank">Powered by FreeIPA</a>
|
2007-08-12 06:53:18 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|