summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-03-04 19:49:25 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-03-04 19:49:25 -0300
commit3e0f667226d94ea31a3696a2704d7a9d106acd0e (patch)
tree75d845907b9479dc6f005d8d418736561ef3fe56
parent13062a447a038fbe5c7cd8ea20887d96c1c37681 (diff)
downloadaskbot-3e0f667226d94ea31a3696a2704d7a9d106acd0e.tar.gz
askbot-3e0f667226d94ea31a3696a2704d7a9d106acd0e.tar.bz2
askbot-3e0f667226d94ea31a3696a2704d7a9d106acd0e.zip
deleted unused files
-rw-r--r--askbot/templates/question/sharing_prompt_phrase.html11
-rw-r--r--askbot/templates/question/subscribe_by_email_prompt.html13
2 files changed, 0 insertions, 24 deletions
diff --git a/askbot/templates/question/sharing_prompt_phrase.html b/askbot/templates/question/sharing_prompt_phrase.html
deleted file mode 100644
index 2e68d1f3..00000000
--- a/askbot/templates/question/sharing_prompt_phrase.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{% set question_url=(settings.APP_URL|strip_path + question.get_absolute_url())|urlencode %}
-<h2 class="share-question">{% trans %}Know someone who can answer? Share a <a href="{{ question_url }}">link</a> to this question via{% endtrans %}
- {% if settings.ENABLE_SHARING_TWITTER %}{{ macros.share(site = 'twitter', site_label = 'Twitter') }},{% endif %}
- {% if settings.ENABLE_SHARING_FACEBOOK %}{{ macros.share(site = 'facebook', site_label = 'Facebook') }},{% endif %}
- {% if settings.ENABLE_SHARING_LINKEDIN %}{{ macros.share(site = 'linkedin', site_label = 'LinkedIn') }},{% endif %}
- {% if settings.ENABLE_SHARING_IDENTICA %}{{ macros.share(site = 'identica', site_label = 'Identi.ca') }},{% endif %}
- {%- if settings.ENABLE_SHARING_TWITTER or settings.ENABLE_SHARING_FACEBOOK or settings.ENABLE_SHARING_LINKEDIN or settings.ENABLE_SHARING_IDENTICA -%}
- {% trans %} or{% endtrans %}
- {% endif %}
- <a href="mailto:?subject={{ settings.APP_SHORT_NAME|urlencode }}&amp;body={{ question_url }}">{% trans %}email{% endtrans %}</a>.
-</h2>
diff --git a/askbot/templates/question/subscribe_by_email_prompt.html b/askbot/templates/question/subscribe_by_email_prompt.html
deleted file mode 100644
index 6a77601c..00000000
--- a/askbot/templates/question/subscribe_by_email_prompt.html
+++ /dev/null
@@ -1,13 +0,0 @@
-{% if request.user.is_authenticated() %}
- <p>
- {{ answer.email_notify }}
- <label for="question-subscribe-updates">
- {% trans %}Email me when there are any new answers{% endtrans %}
- </label>
- </p>
-{% else %}
- <p>
- {{ answer.email_notify }}
- <label>{% trans %}<span class='strong'>Here</span> (once you log in) you will be able to sign up for the periodic email updates about this question.{% endtrans %}</label>
- </p>
-{% endif %}