Opened 11 years ago

Closed 11 years ago

#19894 closed Bug (worksforme)

default STATIC_URL is '/static/' in stead of None?

Reported by: wim@… Owned by: nobody
Component: Documentation Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

https://docs.djangoproject.com/en/dev/ref/settings/#static-url

mentions the default STATIC_URL to be None. But when we create a new project using startproject, it is actually '/static/'.

Change History (3)

comment:1 by anonymous, 11 years ago

Component: UncategorizedDocumentation
Type: UncategorizedBug
Version: 1.4master

comment:2 by Aymeric Augustin, 11 years ago

Django has:

  • "real defaults" in django/conf/global_settings.py which are immutable and must guarantee backwards compatibility,
  • "defaults defaults" in the project template which allow some flexibility.

Confusing, but handy.

If you remove STATIC_URL from your settings files Django will use None.

comment:3 by Wim Feijen, 11 years ago

Resolution: worksforme
Status: newclosed
Note: See TracTickets for help on using tickets.
Back to Top