configurationengine/source/scripts/info_impl_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 %}Implementation info{% endblock %}
     2 {% block title %}Implementation info{% endblock %}
     3 {% block content %}
     3 {% block content %}
     4     <h1>Implementations</h1><br>
     4     <h1>Implementations</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 		<th class="featureName">Index</th>
     9 		<th class="featureName">Line</th>
    10 		<th class="featureName">Type</th>
    10 		<th class="featureName">Type</th>
    11 		<th class="featureName">Phase</th>
    11 		<th class="featureName">Phase</th>
    12 		<th class="featureName">Tags</th>
    12 		<th class="featureName">Tags</th>
    13 		<th class="featureName">Refs</th>
    13 		<th class="featureName">Refs</th>
    14     </tr>
    14     </tr>
    15     {% for impl in data.impl_data %}
    15     {% for impl in data.impl_data %}
    16     <tr>
    16     <tr>
    17         <td>{{ impl.ref }}</td>
    17         <td>{{ impl.ref }}</td>
    18 		<td>{{ impl.index }}</td>
    18 		<td>{{ impl.lineno }}</td>
    19 		<td>{{ impl.IMPL_TYPE_ID }}</td>
    19 		<td>{{ impl.IMPL_TYPE_ID }}</td>
    20 		<td>{{ impl.invocation_phase() }}</td>
    20 		<td>{{ impl.invocation_phase() }}</td>
    21 		<td>
    21 		<td>
    22 		{%- for name, value in impl.get_tags().iteritems() -%}
    22 		{%- for name, value in impl.get_tags().iteritems() -%}
    23 			{{name}} = {{value}}<br/>
    23 			{{name}} = {{value}}<br/>
    35 		</td>
    35 		</td>
    36     </tr>
    36     </tr>
    37     {% endfor %}
    37     {% endfor %}
    38     
    38     
    39     </table>
    39     </table>
       
    40     <script language="javascript" type="text/javascript">
       
    41 //<![CDATA[
       
    42     setFilterGrid("report_data");
       
    43 //]]>
       
    44 </script>
       
    45     
    40 {% endblock %}
    46 {% endblock %}