diff options
author | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-02-09 16:48:38 -0500 |
---|---|---|
committer | Evgeny Fadeev <evgeny.fadeev@gmail.com> | 2010-02-09 16:48:38 -0500 |
commit | 3c4c71fc19865bfb75231c425fae31c6b2c211de (patch) | |
tree | 535fc16fef76b1e89e136c3e4a0947fe8613fe01 /templates/user_email_subscriptions.html | |
parent | bdf1cc4f9dd3f0ac06ba1af3c7d35c72cc358297 (diff) | |
download | askbot-3c4c71fc19865bfb75231c425fae31c6b2c211de.tar.gz askbot-3c4c71fc19865bfb75231c425fae31c6b2c211de.tar.bz2 askbot-3c4c71fc19865bfb75231c425fae31c6b2c211de.zip |
started working towards skinning forum app - first step - move templates to app
Diffstat (limited to 'templates/user_email_subscriptions.html')
-rw-r--r-- | templates/user_email_subscriptions.html | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/templates/user_email_subscriptions.html b/templates/user_email_subscriptions.html deleted file mode 100644 index c0204cbc..00000000 --- a/templates/user_email_subscriptions.html +++ /dev/null @@ -1,26 +0,0 @@ -{% extends "user.html" %} -<!-- user_email_subscriptions.html --> -{% load i18n %} -{% load extra_tags %} -{% load humanize %} - -{% block usercontent %} - <h2>{% trans "Email subscription settings" %}</h2> - <p class="message">{% trans "email subscription settings info" %}</p> - <div class='inline-block'> - {% if action_status %} - <p class="action-status"><span>{{action_status}}</span></p> - {% endif %} - <form method="POST"> - {% include "edit_user_email_feeds_form.html" %} - <table class='form-as-table'> - {{tag_filter_selection_form}} - </table> - <div class="submit-row text-align-right"> - <input type="submit" class="submit" name="save" value="{% trans "Update" %}"/> - <input type="submit" class="submit" name="stop_email" value="{% trans "Stop sending email" %}"/> - </div> - </form> - </div> -{% endblock %} -<!-- end user_email_subscriptions.html --> |