diff options
Diffstat (limited to 'templates/survey.html')
-rw-r--r-- | templates/survey.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/survey.html b/templates/survey.html index acd9d3c..ce62715 100644 --- a/templates/survey.html +++ b/templates/survey.html @@ -40,12 +40,12 @@ }
function redirectSurvey(){
- window.location = "{{ settings.URL_ROOT }}/survey/" + document.getElementById("expeditionChooser").value + "%23" + document.getElementById("surveyChooser").value;
+ window.location = "{{ settings.URL_ROOT }}survey/" + document.getElementById("expeditionChooser").value + "%23" + document.getElementById("surveyChooser").value;
document.getElementById("progressTableContent").style.display='hidden'
}
function redirectYear(){
- window.location = "{{ settings.URL_ROOT }}/survey/" + document.getElementById("expeditionChooser").value + "%23"
+ window.location = "{{ settings.URL_ROOT }}survey/" + document.getElementById("expeditionChooser").value + "%23"
}
</script>
{% endblock %}
|