File: snippet_content.html

package info (click to toggle)
diff-cover 10.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,256 kB
  • sloc: python: 6,452; xml: 218; cpp: 18; sh: 12; makefile: 10
file content (12 lines) | stat: -rw-r--r-- 371 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
{% for src_path, stats in src_stats|dictsort %}
{% if stats.snippets_html %}
        <div class="src-snippet">
            <div class="src-name">{{ src_path }}</div>
            <div class="snippets">
            {% for snippet in stats.snippets_html %}
            {{ snippet | safe }}
            {% endfor %}
            </div>
        </div>
{% endif %}
{% endfor %}