{% extends "base.html" %} {% block title %}LicenseDB: {{ license.key }}{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

back to list - yml - json - text - edit License
{% for label, value in license_data.items() %}
{{ label }}
{% if value is iterable and value is not string %}
    {% for item in value %}
  • {{ item|urlize(target='_blank') }}
  • {% endfor %}
{% else %} {{ value|urlize(target='_blank') }} {% endif %}
{% endfor %}
license_text
{{ license.text }}
{% endblock %} {% block scripts %} {% endblock %}