configurationengine/source/scripts/info_content_report_template.html
author terytkon
Thu, 11 Mar 2010 17:04:37 +0200
changeset 0 2e8eeb919028
child 3 e7e0ae78773e
permissions -rw-r--r--
Adding EPL version of configurationengine.

{% 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 %}