2012-06-01 23:36:38 +00:00
|
|
|
{% extends "global/layout.html" %}
|
2014-01-09 19:39:15 +00:00
|
|
|
{% block title %}{{ _('Logs of past I2P meetings') }}{% endblock %}
|
2012-12-13 21:17:22 +00:00
|
|
|
{% block headextra %}
|
2013-01-18 04:36:24 +00:00
|
|
|
<link href="{{ get_url('meetings_atom') }}" type="application/atom+xml" rel="alternate" title="{{ _('I2P Meetings ATOM Feed') }}" />
|
2012-12-13 21:17:22 +00:00
|
|
|
{%- endblock %}
|
2009-06-14 13:22:48 +00:00
|
|
|
{% block content %}
|
2014-01-10 07:00:33 +00:00
|
|
|
<p>{% trans mtgforum='http://'+i2pconv('zzz.i2p')+'/forums/20' -%}
|
2016-01-02 18:06:19 +00:00
|
|
|
Regularly scheduled project meetings are held on the first Tuesday of every month at 8 PM UTC.
|
|
|
|
Anyone can schedule and
|
2014-01-10 07:00:33 +00:00
|
|
|
run a meeting, by posting the agenda in
|
|
|
|
<a href="{{ mtgforum }}">the meetings forum</a>.
|
2013-03-01 21:43:58 +00:00
|
|
|
{%- endtrans %}</p>
|
|
|
|
|
2013-01-18 03:42:02 +00:00
|
|
|
<p>{% trans blogindex=get_url('blog_index') -%}
|
|
|
|
If you have something to discuss, please find the developers on IRC in #i2p-dev.
|
|
|
|
<a href="{{ blogindex }}">Status updates</a> from developers are also available.
|
|
|
|
{%- endtrans %}</p>
|
|
|
|
|
|
|
|
<div class="underline"></div>
|
|
|
|
|
2009-06-12 21:54:49 +00:00
|
|
|
<ul class="infolist">
|
2013-01-18 03:42:02 +00:00
|
|
|
{%- macro meeting_url(m_id) -%}{{ get_url('meetings_show', id=m_id) }}{%- endmacro %}
|
2013-01-09 01:21:03 +00:00
|
|
|
{% for meeting in meetings %}
|
2012-12-06 23:28:08 +00:00
|
|
|
<li><a href="{{ meeting_url(meeting['id']) }}">Meeting {{ meeting['id'] }}</a>{% if meeting['date'] %} - {{ meeting['date'].strftime("%B %d, %Y") }}{% endif %}</li>
|
2013-01-09 01:21:03 +00:00
|
|
|
{% endfor %}
|
2004-07-12 16:22:18 +00:00
|
|
|
</ul>
|
2012-12-14 06:26:21 +00:00
|
|
|
{%- from "global/macros" import render_pagination with context -%}
|
|
|
|
{{ render_pagination(pagination) | safe }}
|
2008-02-02 21:52:38 +00:00
|
|
|
{% endblock %}
|