configurationengine/source/scripts/info_impl_report_template.html
changeset 0 2e8eeb919028
child 3 e7e0ae78773e
equal deleted inserted replaced
-1:000000000000 0:2e8eeb919028
       
     1 {% extends "cone_base.html" %}
       
     2 {% block title %}Implementation info{% endblock %}
       
     3 {% block content %}
       
     4     <h1>Implementations</h1><br>
       
     5 
       
     6     <table class="report">
       
     7     <tr>
       
     8         <th class="featureName">File</th>
       
     9 		<th class="featureName">Index</th>
       
    10 		<th class="featureName">Type</th>
       
    11 		<th class="featureName">Phase</th>
       
    12 		<th class="featureName">Tags</th>
       
    13 		<th class="featureName">Refs</th>
       
    14     </tr>
       
    15     {% for impl in data.impl_data %}
       
    16     <tr>
       
    17         <td>{{ impl.ref }}</td>
       
    18 		<td>{{ impl.index }}</td>
       
    19 		<td>{{ impl.IMPL_TYPE_ID }}</td>
       
    20 		<td>{{ impl.invocation_phase() }}</td>
       
    21 		<td>
       
    22 		{%- for name, value in impl.get_tags().iteritems() -%}
       
    23 			{{name}} = {{value}}<br/>
       
    24 		{%- endfor -%}
       
    25 		</td>
       
    26 		<td>
       
    27 		{%- set refs = impl.get_refs() -%}
       
    28 		{%- if refs == None -%}
       
    29 			None
       
    30 		{%- else -%}
       
    31 			{%- for ref in refs -%}
       
    32 				{{ref}}<br/>
       
    33 			{%- endfor -%}
       
    34 		{%- endif -%}
       
    35 		</td>
       
    36     </tr>
       
    37     {% endfor %}
       
    38     
       
    39     </table>
       
    40 {% endblock %}