{# Copyright (C) 2015 The Debsources developers . See the AUTHORS file at the top-level directory of this distribution and at https://salsa.debian.org/qa/debsources/blob/master/AUTHORS License: GNU Affero General Public License, version 3 or above. #} {# copied from templates/checksum.html #} {% extends name+"/base.html" %} {% block title %}Checksum: {{ checksum }}{% endblock %} {% block breadcrumbs %} Copyright / Checksum / {{ checksum }}{% endblock %} {% block content %}

{{ self.title() }}

{% import "copyright/macros.html" as macro %} {% if count > 1 %}

Summary

This checksum appears {{ count }} times in our database. It appears in under the following licenses:

{% if package_filter != true %}

Most frequent package{% if frequent_packages|length > 1 %}s are: {% for p in frequent_packages %} {{ p }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} is: {{ frequent_packages[0] }}{% endif %}

{% endif %} {% if frequent_licenses|length != 0 %}

Most frequent license{% if frequent_licenses|length > 1 %}s are: {% for l in frequent_licenses %} {{ l }}{% if not loop.last %}, {% endif %} {% endfor %} {% else %} is: {{ frequent_licenses[0] }}{% endif %}

Details

{% endif %} {% for c in copyright %} {{ macro.view_license(c) }} {% endfor %} {% if pagination != none%} {{ macros.render_pagination(pagination) }} {% endif %} {% elif count == 0 %}

0 results

{% else %}

Summary

This checksum appears {{ count }} time in our database.

{{ macro.view_license(copyright[0]) }} {% endif %} {% endblock %}