Skip to content
This repository has been archived by the owner on Oct 1, 2020. It is now read-only.

Commit

Permalink
fix csrf error on first run page
Browse files Browse the repository at this point in the history
 - fixes POST failing due to no CSRF token
 - version bump to 1.8.1
 - closes #38
  • Loading branch information
monty5811 committed May 28, 2016
1 parent 4f76b83 commit a12c4e2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ansible/env_vars/base.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---

git_repo: https://github.com/monty5811/apostello.git
git_version: v1.8.0
git_version: v1.8.1

project_name: apostello
application_name: apostello
Expand Down
2 changes: 1 addition & 1 deletion apostello/templates/apostello/first_run.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ <h3>Configuration Variables</h3>
</table>
</div>
</br>

<div id="send_test_email"></div>
</br>

Expand All @@ -86,5 +85,6 @@ <h3>Configuration Variables</h3>
</script>
<script src="{% static 'js/vendor.js' %}"></script>
<script src="{% static 'js/main.js' %}"></script>
{% csrf_token %}
</body>
</html>
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
copyright = '2015, Dean Montgomery'
author = 'Dean Montgomery'

version = '1.8.0'
version = '1.8.1'
# The full version, including alpha/beta/rc tags.
release = '0.1'
language = None
Expand Down
2 changes: 1 addition & 1 deletion scripts/ansible_install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set -e
AP_VER=v1.8.0
AP_VER=v1.8.1

echo "Installing and upgrading packages"
sudo apt-get update -qq
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
except ImportError:
from distutils.core import setup

version = "1.8.0"
version = "1.8.1"

install_reqs = parse_requirements(
'requirements_test.txt',
Expand Down

0 comments on commit a12c4e2

Please sign in to comment.