Changeset - e0bb98ffe38a
[Not reviewed]
default
0 2 4
Dennis Fink - 11 years ago 2014-02-03 23:47:05
dennis.fink@c3l.lu
added namecoin and litecoin donations
6 files changed with 73 insertions and 1 deletions:
0 comments (0 inline, 0 general)
ennstatus/donate/views.py
Show inline comments
 
@@ -29,12 +29,22 @@ def paypal():
 

	
 
@donate_page.route('/bitcoin')
 
def bitcoin():
 
    return render_template('donate/bitcoin.html')
 

	
 

	
 
@donate_page.route('/litecoin')
 
def litecoin():
 
    return render_template('donate/litecoin.html')
 

	
 

	
 
@donate_page.route('/namecoin')
 
def namecoin():
 
    return render_template('donate/namecoin.html')
 

	
 

	
 
@donate_page.route('/flattr')
 
def flattr():
 
    return render_template('donate/flattr.html')
 

	
 

	
 
@donate_page.route('/bpm')
ennstatus/static/images/LiteCoin_Logo.jpg
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
ennstatus/static/images/NameCoin_Logo.png
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
ennstatus/templates/donate/index.html
Show inline comments
 
@@ -57,13 +57,33 @@
 
          <a href="{{ url_for('donate.bitcoin') }}"><img src="{{ url_for('static', filename='images/BitCoin_Logo.png') }}" width="135" height="135"></img></a>
 
          <h5>BitCoin</h5>
 
          <p>A free alternative method.</p>
 
          <a class="btn btn-info" href="{{ url_for('donate.bitcoin') }}">Take Action Now</a>
 
        </center>
 
      </div>
 
    </div>  
 
    </div>
 
    <div class="col-md-4">
 
      <div class="thumbnail">
 
        <center>
 
          <a href="{{ url_for('donate.litecoin') }}"><img src="{{ url_for('static', filename='images/LiteCoin_Logo.jpg') }}" width="135" height="135"></img></a>
 
          <h5>LiteCoin</h5>
 
          <p>Another free alternative method.</p>
 
          <a class="btn btn-info" href="{{ url_for('donate.litecoin') }}">Take Action Now</a>
 
        </center>
 
      </div>
 
    </div>
 
    <div class="col-md-4">
 
      <div class="thumbnail">
 
        <center>
 
          <a href="{{ url_for('donate.namecoin') }}"><img src="{{ url_for('static', filename='images/NameCoin_Logo.png') }}" width="135" height="135"></img></a>
 
          <h5>NameCoin</h5>
 
          <p>A third free alternative method.</p>
 
          <a class="btn btn-info" href="{{ url_for('donate.namecoin') }}">Take Action Now</a>
 
        </center>
 
      </div>
 
    </div>
 
    <div class="col-md-4">
 
      <div class="thumbnail">
 
        <center>
 
          <a href="{{ url_for('donate.flattr') }}"><img src="{{ url_for('static', filename='images/Flattr_Logo.png') }}" width="135" height="135"></img></a>
 
          <h5>Flattr</h5>
 
          <p>Flattr us!</p>
ennstatus/templates/donate/litecoin.html
Show inline comments
 
new file 100644
 
{% extends "base.html" %}
 

	
 
{% set title = "Donate - Litecoin" %}
 

	
 
{% block content %}
 
  <div class="col-md-4 text-center">
 
    <img src="{{ url_for('static', filename='images/LiteCoin_Logo.jpg') }}" class="img-rounded" alt="Litecoin" width="160"></img>
 
    <h2>Litecoin</h2>
 
  </div>
 
  <div class="col-md-8">
 
    <blockquote>
 
      <p>"<em>This may be the purest form of democracy the world has ever known, and I - for one - am thrilled to be here to watch it unfold.</em>"</p>
 
      <small>Paco Ahlgren</small>
 
    </blockquote>
 

	
 
    <p><strong>Litecoin</strong></p>
 

	
 
    <div class="alert-success"><strong>Litecoin Address</strong></div>
 
    <p>LQdhbm1rMnKJ78hrw8PhdaXw4MsnqGUnXm</p>
 
  </div>
 
{% endblock %}
ennstatus/templates/donate/namecoin.html
Show inline comments
 
new file 100644
 
{% extends "base.html" %}
 

	
 
{% set title = "Donate - Namecoin" %}
 

	
 
{% block content %}
 
  <div class="col-md-4 text-center">
 
    <img src="{{ url_for('static', filename='images/NameCoin_Logo.png') }}" class="img-rounded" alt="Namecoin" width="160"></img>
 
    <h2>Namecoin</h2>
 
  </div>
 
  <div class="col-md-8">
 
    <blockquote>
 
      <p>"<em>This may be the purest form of democracy the world has ever known, and I - for one - am thrilled to be here to watch it unfold.</em>"</p>
 
      <small>Paco Ahlgren</small>
 
    </blockquote>
 

	
 
    <p><strong>Namecoin</strong></p>
 

	
 
    <div class="alert-success"><strong>Namecoin Address</strong></div>
 
    <p>N2wV81m8vEG1yeQV7izPwT4SUUhHi4jo2E</p>
 
  </div>
 
{% endblock %}
0 comments (0 inline, 0 general)