Add BASE_URL setting back to project template

pull/2634/head
Matt Westcott 2016-05-18 22:11:38 +01:00
rodzic e4735abc20
commit 7f8cf2539f
3 zmienionych plików z 6 dodań i 0 usunięć
docs/releases
wagtail/project_template/project_name/settings

Wyświetl plik

@ -62,6 +62,7 @@ Changelog
* Fix: The up / down / delete controls on the "Promoted search results" form no longer trigger a form submission (Matt Westcott)
* Fix: Opening preview window no longer performs user-agent sniffing, and now works correctly on IE11 (Matt Westcott)
* Fix: Tree paths are now correctly assigned when previewing a newly-created page underneath a parent with deleted children (Matt Westcott)
* Fix: Added BASE_URL setting back to project template
1.4.4 (10.05.2016)

Wyświetl plik

@ -19,3 +19,4 @@ Bug fixes
* The up / down / delete controls on the "Promoted search results" form no longer trigger a form submission (Matt Westcott)
* Opening preview window no longer performs user-agent sniffing, and now works correctly on IE11 (Matt Westcott)
* Tree paths are now correctly assigned when previewing a newly-created page underneath a parent with deleted children (Matt Westcott)
* Added BASE_URL setting back to project template

Wyświetl plik

@ -136,3 +136,7 @@ MEDIA_URL = '/media/'
# Wagtail settings
WAGTAIL_SITE_NAME = "{{ project_name }}"
# Base URL to use when referring to full URLs within the Wagtail admin backend -
# e.g. in notification emails. Don't include '/admin' or a trailing slash
BASE_URL = 'http://example.com'