Skip to content

Commit

Permalink
[Fixes #3775] Hard-coded urls to static-files and media-files
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Oct 30, 2018
1 parent 51c1ce6 commit 8eb7bc0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion geonode/local_settings.py.geoserver.sample
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,8 @@ if UNOCONV_ENABLE:
UNOCONV_TIMEOUT = os.getenv('UNOCONV_TIMEOUT', 30) # seconds

# Advanced Security Workflow Settings
ACCOUNT_APPROVAL_REQUIRED = False
ACCOUNT_OPEN_SIGNUP = True
ACCOUNT_APPROVAL_REQUIRED = True
CLIENT_RESULTS_LIMIT = 20
API_LIMIT_PER_PAGE = 1000
FREETEXT_KEYWORDS_READONLY = False
Expand Down
2 changes: 1 addition & 1 deletion geonode/templates/account/logout.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{% block body %}
<div class="row">
<div class="col-md-12">
<form method="POST" action="{% url "account_logout" %}?next={{ SITEURL }}" class="form-horizontal">
<form method="POST" action="{% url "account_logout" %}?next={{ SITEURL }}" class="form-horizontal">
<h2 class="page-title">{% trans "Log out" %}</h2>
<fieldset>
{% csrf_token %}
Expand Down

0 comments on commit 8eb7bc0

Please sign in to comment.