23 lines
610 B
HTML
23 lines
610 B
HTML
<html>
|
|
<head>
|
|
<title><%if site_title%><%site_title%><%else%>Gossamer List<%endif%></title>
|
|
<%include include_style.txt%>
|
|
<script src="<%static_url%>/js/glist.js"></script>
|
|
<script>
|
|
function setFocus() {
|
|
<%if set_focus%>
|
|
var obj = document.<%set_focus%>;
|
|
if (typeof(obj) != 'undefined')
|
|
document.<%set_focus%>.focus();
|
|
<%endif%>
|
|
<%if call_check%>check_all();<%endif%>
|
|
}
|
|
</script>
|
|
|
|
<body bgcolor="#FFFFFF" leftmargin="5" topmargin="0" onLoad="setFocus();">
|
|
<%if usr_type == 1%>
|
|
<%include include_header_admin.html%>
|
|
<%else%>
|
|
<%include include_header_user.html%>
|
|
<%endif%>
|