%inherit file="//layout/view.html" />
<%namespace name="lib" file="//lib.html" import="*" />
<%namespace name="helper" file="//admin/_helpers.html" import="header" />
## Load the nav module(s) if required
% if 'appHeader' in modules:
<%call expr="parent.buildSimplePanelContainer(modules, 'messaging')">%call>
% endif
<%helper:header namespace="${namespace}"/>
${next.body()}
<%def name="title()">
${_('Splunk Manager - Splunk %(version)s (%(build_number)s)') % dict(version=cherrypy.config.get('version_label'), build_number=cherrypy.config.get('build_number'))}
%def>
<%def name="css()">
<% parent.css() %>
<%lib:stylesheet_tags files="${['/static/css/view.css', '/modules/nav/AccountBar.css', '/modules/nav/ManagerBar.css', '/modules/messaging/Message.css', '/modules/paginator/paginator.css', '/static/css/admin.css', '/static/css/print.css']}" compile="${False}" />
%def>
## js needs to be included in head of page due to admin architecture for re-use.
<%def name="head()">
<%lib:script_tags files="${['/static/js/contrib/jquery.cookie.js', '/static/js/splunk.jquery.csrf_protection.js']}" compile="${False}" />
<% parent.head() %>
%def>