mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-21 13:31:54 +00:00
Add BASE_URL setting back to project template
This commit is contained in:
parent
d1acd84510
commit
a0ae61d05d
3 changed files with 6 additions and 0 deletions
|
|
@ -10,6 +10,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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -134,3 +134,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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue