configurationengine/source/scripts/info_content_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 %}Content info{% endblock %}
       
     3 {% block content %}
       
     4     <h1>Configuration content files</h1><br>
       
     5 
       
     6     <table class="report">
       
     7     <tr>
       
     8         <th class="featureName">Content file</th>
       
     9 		<th class="featureName">Actual files (used one last)</th>
       
    10     </tr>
       
    11     {% for entry in data.content_data %}
       
    12     <tr>
       
    13         <td>{{ entry.file }}</td>
       
    14 		<td>
       
    15 		{%- for file in entry.actual_files -%}
       
    16 			{{file}}<br/>
       
    17 		{%- endfor -%}
       
    18 		</td>
       
    19     </tr>
       
    20     {% endfor %}
       
    21     
       
    22     </table>
       
    23 {% endblock %}