blob: 8a8d3734afac4e2b96f0ca97b93ab4de78d59595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block title %}confine {{ adjective|e }}{{ package| e }}{% endblock %}
{% block content -%}
<h1>confine {{ adjective|e }}package {{ package|e }}</h1>
<p>Which of the following do you mean?</p>
<ul>
{%- for architecture in architectures|sort -%}
<li><a href="{{ href|format(architecture)|e }}">{{ architecture|e }}</a></li>
{%- endfor -%}
</ul>
{%- endblock -%}
|