Newer
Older
<%doc>
This Mako template is intended to create a global attribute report page for
the Glance GUI.
Created by Eva Schiffer Aug 2021.
Copyright (c) 2021 University of Wisconsin SSEC. All rights reserved.
</%doc>
<%!
import glance.constants as constants
%>
<%inherit file="report-base.txt"/>
## replace our basic title with this
<%block name="title">
Global Attributes
</%block>
## we don't need a second label on the section
<%block name="attrsTitle">
</%block>
<%block name="htmlContent">
<h2>${self.title()}</h2>
${self.attrsInfo()}
</%block>