Mercurial > public > sg101
changeset 66:9a29e9933959
Donations: made the donations debug flag be in local_settings. Changed the donations template to be a two column display of stats and donors.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 27 Jun 2009 22:20:35 +0000 |
parents | 9fabeabd89d4 |
children | 4ec8d1d0ccbd |
files | gpp/settings.py gpp/templates/donations/index.html |
diffstat | 2 files changed, 11 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/gpp/settings.py Sat Jun 27 21:56:56 2009 +0000 +++ b/gpp/settings.py Sat Jun 27 22:20:35 2009 +0000 @@ -160,7 +160,7 @@ AVATAR_DEFAULT_URL = MEDIA_URL + AVATAR_DIR + '/default.png' # Donations application settings: -DONATIONS_DEBUG = True +DONATIONS_DEBUG = local_settings.DONATIONS_DEBUG DONATIONS_ITEM_NAME = 'Donation for SurfGuitar101.com' DONATIONS_BUSINESS = 'brian@surfguitar101.com' DONATIONS_BUSINESS_DEBUG = local_settings.DONATIONS_BUSINESS_DEBUG
--- a/gpp/templates/donations/index.html Sat Jun 27 21:56:56 2009 +0000 +++ b/gpp/templates/donations/index.html Sat Jun 27 22:20:35 2009 +0000 @@ -14,6 +14,7 @@ <a href="{% url contact-form %}">contact me</a> and we can work something else out. </p> <p>Thank you for donating to SurfGuitar101.com!</p> +<div class="span-9 append-1"> <h3>Statistics for {% now "F, Y" %}:</h3> <table> <tr><th>Goal:</th><td>${{ goal }}</td></tr> @@ -21,8 +22,10 @@ <tr><th>Net:</th><td>${{ net }}</td></tr> <tr><th>Left to Go:</th><td>${{ left }}</td></tr> </table> +</div> +<div class="span-9 last"> +<h3>Donors for {% now "F, Y" %}:</h3> {% if donations %} -<h3>Donors for {% now "F, Y" %}:</h3> <ul> {% for donation in donations %} <li> @@ -38,15 +41,18 @@ </li> {% endfor %} </ul> +{% else %} +<p>We haven't received any donations this month. You could be the first!</p> {% endif %} +</div> -<h3>Donation Form</h3> +<div class="span-19 last"> <form action="{{ form_action }}" method="post"> <fieldset> <legend>Make A Donation</legend> <p>Please select an amount:</p> <ul class="icon-list"> - <li><input name="amount" type="radio" value="" id="amount_other" /> + <li><input name="amount" type="radio" value="" id="amount_other_r" /> <label for="amount_other">Other:</label> <input name="amount" type="text" value="25.00" id="amount_other" size="7" /></li> <li><input name="amount" type="radio" value="5.00" id="amount_5" /> @@ -92,5 +98,5 @@ alt="Submit Button" /></p> </fieldset> </form> - +</div> {% endblock %}