Skip to content
Snippets Groups Projects
report-guigattrs.txt 598 B
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">

    ${self.cssStyle()}

    <h2>${self.title()}</h2>

    ${self.attrsInfo()}
    
</%block>