configurationengine/source/scripts/info_impl_report_template.html
author m2lahtel
Tue, 10 Aug 2010 14:29:28 +0300
changeset 3 e7e0ae78773e
parent 0 2e8eeb919028
permissions -rw-r--r--
ConE 1.2.11 release

{% extends "cone_base.html" %}
{% block title %}Implementation info{% endblock %}
{% block content %}
    <h1>Implementations</h1><br>

    <table class="report" id="report_data">
    <tr>
        <th class="featureName">File</th>
		<th class="featureName">Line</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.lineno }}</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>
    <script language="javascript" type="text/javascript">
//<![CDATA[
    setFilterGrid("report_data");
//]]>
</script>
    
{% endblock %}