Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Political Memory
memopol
Commits
edae7d86
Commit
edae7d86
authored
May 23, 2017
by
Okhin
Browse files
Shutting down csrf for now. Some mystic shit is happening in uwsgi. /spend 6h.
parent
8cc240ed
Pipeline
#1069
passed with stage
in 10 minutes and 37 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/memopol/templates/_position_form_modal.html
View file @
edae7d86
...
...
@@ -13,9 +13,6 @@
</div>
<div
class=
"modal-body"
>
{% csrf_token %}
<div
class=
"row"
>
<div
class=
"col-sm-12"
>
<div
class=
"well well-sm text-justify"
>
{% include "text/position_info.html" %}
</div>
...
...
@@ -96,4 +93,4 @@
$
(
"
#add-position-success
"
).
modal
(
"
show
"
);
});
</script>
{% endif %}
\ No newline at end of file
{% endif %}
src/memopol/views/home.py
View file @
edae7d86
...
...
@@ -6,7 +6,7 @@ import random
from
django.db.models
import
Q
,
Count
from
django.views
import
generic
from
django.utils.decorators
import
method_decorator
from
django.views.decorators.csrf
import
csrf_
protec
t
from
django.views.decorators.csrf
import
csrf_
exemp
t
from
representatives.models
import
Chamber
,
Representative
from
representatives_positions.views
import
PositionFormMixin
...
...
@@ -22,7 +22,7 @@ class HomeView(PositionFormMixin, RepresentativeViewMixin,
generic
.
TemplateView
):
template_name
=
'home.html'
@
method_decorator
(
csrf_
protec
t
)
@
method_decorator
(
csrf_
exemp
t
)
def
dispatch
(
self
,
*
args
,
**
kwargs
):
return
super
(
HomeView
,
self
).
dispatch
(
*
args
,
**
kwargs
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment