{% extends "linkage/base.html" %} {% block header %} {% endblock %} {% block content %}

In this page, users create references to the various licenses used in their products to allow them to define policies around linkages made between binaries and libraries available under licenses. Because license lists may be imported from different sources with different naming conventions, one can create a list of possible equivalent strings (aliases) for a particular license. You can add additional aliases to the list for a license simply by entering more and using the "Add Aliases" button again. Alias names must be unique.

{% for lic in latest_license_list %} {% endfor %}
Long Name Abbreviation Version
Long Name Abbreviation Version
{{ lic.longname }} {{ lic.license }} {{ lic.version }}
{% if not latest_license_list %}
No licenses are available. {% endif %}
{% for alias in latest_aliases_list %} {% endfor %}
License Aliases
{{ aliasesform.license }} {% autoescape off %} {% if errmsg %}{{errmsg}}
{% endif %} {% for input in input_list %} {{ input }} {% endfor %} {% endautoescape %}
{{ alias.license }} {{ alias.alias }}
{% if not latest_aliases_list %}
No aliases are available. {% endif %}
{% endblock %}