Files @ 664a5b8c551a
Branch filter:

Location: kallithea/pylons_app/templates/admin/admin.html

Marcin Kuzminski
Added application settings, are now customizable from database
fixed all instances of sqlachemy to be removed() after execution.
## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('Administration')}
</%def>
<%def name="breadcrumbs()">
	${h.link_to(u'Admin',h.url('admin_home'))}
</%def>
<%def name="page_nav()">
	${self.menu('admin')}
	${self.submenu('')}
</%def>
<%def name="main()">
    <div>
        <h2>Welcome ${c.hg_app_user.username}</h2>
		    <div id="user_log">
				${c.log_data}
			</div>
    </div>
</%def>