configurationengine/source/scripts/info_content_report_template.html
changeset 0 2e8eeb919028
child 3 e7e0ae78773e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/configurationengine/source/scripts/info_content_report_template.html	Thu Mar 11 17:04:37 2010 +0200
@@ -0,0 +1,23 @@
+{% extends "cone_base.html" %}
+{% block title %}Content info{% endblock %}
+{% block content %}
+    <h1>Configuration content files</h1><br>
+
+    <table class="report">
+    <tr>
+        <th class="featureName">Content file</th>
+		<th class="featureName">Actual files (used one last)</th>
+    </tr>
+    {% for entry in data.content_data %}
+    <tr>
+        <td>{{ entry.file }}</td>
+		<td>
+		{%- for file in entry.actual_files -%}
+			{{file}}<br/>
+		{%- endfor -%}
+		</td>
+    </tr>
+    {% endfor %}
+    
+    </table>
+{% endblock %}
\ No newline at end of file