# HG changeset patch # User Dennis Fink # Date 2014-09-13 18:12:42 # Node ID 1ade31ac252828f7b8bd307bb2bbe13b6526549e # Parent 059448c2562e090702dc9c78a406098000d741c3 Added bridge program diff --git a/ennstatus/root/views.py b/ennstatus/root/views.py --- a/ennstatus/root/views.py +++ b/ennstatus/root/views.py @@ -27,6 +27,11 @@ def partners(): return render_template('root/partners.html') +@root_page.route('/bridgeprogram') +def bridgeprogram(): + return render_template('root/bridgeprogram.html') + + @root_page.route('/contact', methods=('GET', 'POST')) def contact(): diff --git a/ennstatus/templates/base.html b/ennstatus/templates/base.html --- a/ennstatus/templates/base.html +++ b/ennstatus/templates/base.html @@ -56,8 +56,12 @@
  • Received Donations
  • -
  • - Partners +
  • Contact diff --git a/ennstatus/templates/root/bridgeprogram.html b/ennstatus/templates/root/bridgeprogram.html new file mode 100644 --- /dev/null +++ b/ennstatus/templates/root/bridgeprogram.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} + +{% set title = "Bridge Program" %} + +{% block content %} +
    + Partners +

    Bridge Program

    +
    +
    +
    +

    United we stand, devided we fall.

    + Aesop, The Four Oxen and the Lion +
    + +

    About

    +

    We are happy to announce our new partner program which allows you to support the TOR network by funding a TOR bridge. Rather than making a single donation which we would use to cover our expenses for our different projects and administrative charges, you can now fund a TOR bridge on your own. + Bridges are an important element in the TOR network because they allow people to use the network even if the direct acces to its entry-nodes is blocked in their country. This is mainly the case for people living under oppressive regimes.

    +

    With a recurring contribution of 3 EUR/month (duration min. 12 months) you can help us keep such a bridge up and running. The servers for this project are located in Luxembourg.

    + +

    How to participate?

    +

    Interested? Our bridge operator will give you further information about the project.

    +

    Get in touch: Write to bridges@enn.lu GPG: 0x...... (DE, EN, LB, FR)

    + +

    Interaction

    +

    As a partner in our project you can choose the nickname of your bridge and follow it on Ënnstatus, our self-made information-panel.

    +

    You want to know more about our work? Our staff is always happy to answer your questions, don't hestitate to contact us.

    +
    +{% endblock %} diff --git a/ennstatus/templates/status/macros.html b/ennstatus/templates/status/macros.html --- a/ennstatus/templates/status/macros.html +++ b/ennstatus/templates/status/macros.html @@ -53,7 +53,7 @@ {% for server in servers %} - + {{ loop.index }} {% if server_type in ('Exit', 'Relay') %} {{ create_name(server['server_name']) }} @@ -77,4 +77,10 @@ {% endfor %} + {% if server_type == 'Bridge' %} + + {% endif %} {% endmacro %}