Skip to content

Commit a61a86d

Browse files
authored
Merge pull request #15 from springload/hotfix
fix template
2 parents 5caba8a + 2efd4f6 commit a61a86d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88

99
...
1010

11-
## [1.1.4] - 2018-06-21
11+
## [1.1.5] - 2018-06-21
1212

1313
### Fixed
1414

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
PY3 = sys.version_info[0] == 3
2020

2121
install_requires = [
22-
'wagtail>=1.4',
22+
'wagtail>=1.5',
2323
'django>=1.8',
2424
'django-password-policies-iplweb>=0.4.4b1',
2525
'django-axes>=2.0.0,<3.0.0',
@@ -28,7 +28,7 @@
2828

2929
setup(
3030
name='wagtailenforcer',
31-
version='1.1.4',
31+
version='1.1.5',
3232
description='WagtailEnforcer, the Wagtail arm of the law.',
3333
author='Springload',
3434
author_email='hello@springload.co.nz',

wagtailenforcer/templates/wagtailenforcer/list_attempts.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<td>{{ attempt.username }}</td>
1414
<td>{{ attempt.ip_address }}</td>
1515
<td>{{ attempt.user_agent }}</td>
16-
<td><a href="{% url ''wagtailenforcer_unblock_user' attempt.id %}" class="button">{% trans "Unblock" %}</a></td>
16+
<td><a href="{% url 'wagtailenforcer_unblock_user' attempt.id %}" class="button">{% trans "Unblock" %}</a></td>
1717
</tr>
1818
{% endfor %}
1919
</tbody>

0 commit comments

Comments
 (0)