]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/akismet/templates/foundspam.html
OSQA-516, bugfix for the Akismet Module. There was problem with the loading of the...
[osqa.git] / forum_modules / akismet / templates / foundspam.html
1 {% extends "base_content.html" %}
2 {% load i18n %}
3 {% block title %}{% trans "Akismet message" %}{% endblock %}
4
5 {% block content %}
6 <div class="headNormal">
7 {% blocktrans %}Akismet believes your {{ action_name }} is spam.{% endblocktrans %}
8 </div>
9 <div class="content">
10 {% blocktrans %}
11 We're sorry, but Akismet believes your {{ action_name }} is spam.<br />
12 If you believe this is an error, please contact the forum administrator.
13 {% endblocktrans %}
14
15 {% if captcha_form.recaptcha %}
16 <form action="." method="post">
17 <table>
18         <tr>
19                 <td>
20                 {% for post_item in post_data.items %}
21                 <input type="hidden" name="{{ post_item.0 }}" value="{{ post_item.1 }}" />
22                 {% endfor %}
23
24                 {{ captcha_form.recaptcha }}
25                 
26                 </td>
27         </tr>
28         <tr>
29                 <td><input type="submit" value"{% trans "Submit" %} /></td>
30         </tr>
31 </table>
32 </form>
33 {% endif %}
34
35 </div>
36 {% endblock %}