configurationengine/source/scripts/info_impl_report_template.html
changeset 0 2e8eeb919028
child 3 e7e0ae78773e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/configurationengine/source/scripts/info_impl_report_template.html	Thu Mar 11 17:04:37 2010 +0200
@@ -0,0 +1,40 @@
+{% extends "cone_base.html" %}
+{% block title %}Implementation info{% endblock %}
+{% block content %}
+    <h1>Implementations</h1><br>
+
+    <table class="report">
+    <tr>
+        <th class="featureName">File</th>
+		<th class="featureName">Index</th>
+		<th class="featureName">Type</th>
+		<th class="featureName">Phase</th>
+		<th class="featureName">Tags</th>
+		<th class="featureName">Refs</th>
+    </tr>
+    {% for impl in data.impl_data %}
+    <tr>
+        <td>{{ impl.ref }}</td>
+		<td>{{ impl.index }}</td>
+		<td>{{ impl.IMPL_TYPE_ID }}</td>
+		<td>{{ impl.invocation_phase() }}</td>
+		<td>
+		{%- for name, value in impl.get_tags().iteritems() -%}
+			{{name}} = {{value}}<br/>
+		{%- endfor -%}
+		</td>
+		<td>
+		{%- set refs = impl.get_refs() -%}
+		{%- if refs == None -%}
+			None
+		{%- else -%}
+			{%- for ref in refs -%}
+				{{ref}}<br/>
+			{%- endfor -%}
+		{%- endif -%}
+		</td>
+    </tr>
+    {% endfor %}
+    
+    </table>
+{% endblock %}
\ No newline at end of file