- Timestamp:
- 06/04/07 11:12:35 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/boulder-oracle-sprint/docs/django-admin.txt
r5047 r5422 296 296 297 297 By default, the development server doesn't serve any static files for your site 298 (such as CSS files, images, things under ``MEDIA_ ROOT_URL`` and so forth). If298 (such as CSS files, images, things under ``MEDIA_URL`` and so forth). If 299 299 you want to configure Django to serve static media, read the `serving static files`_ 300 300 documentation. … … 404 404 give you the option of creating a superuser immediately. 405 405 406 ``syncdb`` will also search for and install any fixture named ``initial_data``. 407 See the documentation for ``loaddata`` for details on the specification of 408 fixture data files. 406 ``syncdb`` will also search for and install any fixture named ``initial_data`` 407 with an appropriate extension (e.g. ``json`` or ``xml``). See the 408 documentation for ``loaddata`` for details on the specification of fixture 409 data files. 409 410 410 411 test
