{% extends "base.htm" %} {% block title %} Tool results: {%if repo.getDescription %} {{repo.getDescription}} {%else%} {{repo.id}} {%endif%} {% endblock %} {% block content %}

Tool results: {{repo.getDescription}}

edit back

Paste #{{repo.id}}

{% for line in toolres.annotations.general %}
{{line.message}}
{% endfor %} {% include 'display-file.htm' %}
{% for number,lineinfos in toolres.annotations if number != 'general' %} {% for line in lineinfos %}
Line #{{number}}: {{line.message}}
{% endfor %} {% endfor %}
{% include 'display-foot.htm' %} {% endblock %}