37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
{% extends "global/layout.html" %}
|
|
{% block title %}I2P Proposal Documents{% endblock %}
|
|
{% block content %}
|
|
<p>
|
|
This page is the central index of proposed changes to the
|
|
<a href="{{ url_for('spec_index') }}">I2P specifications</a>.
|
|
</p>
|
|
|
|
<p>{% trans dev='http://'+i2pconv('zzz.i2p'),
|
|
trac='https://trac.i2p2.de/report/1' -%}
|
|
To submit a proposal, post it on the <a href="{{ dev }}">development forum</a>
|
|
or <a href="{{ trac }}">enter a ticket with the proposal attached</a>.
|
|
{%- endtrans %}</p>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Number</th>
|
|
<th>Title</th>
|
|
<th>Last updated</th>
|
|
<th>Status</th>
|
|
<th>Link</th>
|
|
</tr>
|
|
{% for proposal in proposals %}
|
|
<tr>
|
|
<td>{{ proposal.num }}</td>
|
|
<td>{{ proposal.title }}</td>
|
|
<td><time>{{ proposal.lastupdated }}</time></td>
|
|
<td>{{ proposal.status }}</td>
|
|
<td>
|
|
<a href="{{ url_for('proposal_show', name=proposal.name) }}">HTML</a> |
|
|
<a href="{{ url_for('proposal_show_txt', name=proposal.name) }}">TXT</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|