configurationengine/source/scripts/info_api_report_template.html
changeset 3 e7e0ae78773e
parent 0 2e8eeb919028
equal deleted inserted replaced
2:87cfa131b535 3:e7e0ae78773e
     1 {% extends "cone_base.html" %}
     1 {% extends "cone_base.html" %}
     2 {% block title %}API info{% endblock %}
     2 {% block title %}API info{% endblock %}
     3 {% block content %}
     3 {% block content %}
     4     <h1>Configuration API info</h1><br>
     4     <h1>Configuration API info</h1><br>
     5 
     5 
     6     <table class="report">
     6     <table class="report" id="report_data">
     7     <tr>
     7     <tr>
     8         <th class="featureName">File</th>
     8         <th class="featureName">File</th>
     9         {% for item in data.api_data.columns %}
     9         {% for item in data.api_data.columns %}
    10         <th class="featureName">{{ data.api_data.columns[item] }}</th>
    10         <th class="featureName">{{ data.api_data.columns[item] }}</th>
    11         {% endfor %}
    11         {% endfor %}
    20     </tr>
    20     </tr>
    21     {% endif %}
    21     {% endif %}
    22     {% endfor %}
    22     {% endfor %}
    23     
    23     
    24     </table>
    24     </table>
       
    25 
       
    26 <script language="javascript" type="text/javascript">
       
    27 //<![CDATA[
       
    28     setFilterGrid("report_data");
       
    29 //]]>
       
    30 </script>
    25 {% endblock %}
    31 {% endblock %}