]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/akismet/templates/foundspam.html
03bc660bd19ade70cba1fb19e5e7ed1ac27883c5
[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 <form action="." method="post">
16 <table>
17         <tr>
18                 <td>
19                 {% for post_item in post_data.items %}
20                 <input type="hidden" name="{{ post_item.0 }}" value="{{ post_item.1 }}" />
21                 {% endfor %}
22                 {{ captcha_form.captcha }}</td>
23         </tr>
24         <tr>
25                 <td><input type="submit" value"{% trans "Submit" %} /></td>
26         </tr>
27 </table>
28 </form>
29
30 </div>
31 {% endblock %}