diff -r 000000000000 -r 2e8eeb919028 configurationengine/source/scripts/info_impl_report_template.html --- /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 %} +

Implementations


+ + + + + + + + + + + {% for impl in data.impl_data %} + + + + + + + + + {% endfor %} + +
FileIndexTypePhaseTagsRefs
{{ impl.ref }}{{ impl.index }}{{ impl.IMPL_TYPE_ID }}{{ impl.invocation_phase() }} + {%- for name, value in impl.get_tags().iteritems() -%} + {{name}} = {{value}}
+ {%- endfor -%} +
+ {%- set refs = impl.get_refs() -%} + {%- if refs == None -%} + None + {%- else -%} + {%- for ref in refs -%} + {{ref}}
+ {%- endfor -%} + {%- endif -%} +
+{% endblock %} \ No newline at end of file