Fixed ReST bugs in docs/django-admin.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@612 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-09-02 19:05:51 +00:00
parent 64d3da63ae
commit 92918b5ed7
1 changed files with 9 additions and 9 deletions

View File

@ -31,7 +31,7 @@ Available actions
=================
adminindex [modelmodule modelmodule ...]
------------------------
----------------------------------------
Prints the admin-index template snippet for the given model module(s).
@ -76,7 +76,7 @@ customizations. In particular, you'll need to do this:
works in PostgreSQL.
install [modelmodule modelmodule ...]
---------------------
-------------------------------------
Executes the equivalent of ``sqlall`` for the given model module(s).
@ -116,37 +116,37 @@ Port 7000 on IP address 1.2.3.4::
django-admin.py runserver 1.2.3.4:7000
sql [modelmodule modelmodule ...]
-----------------
---------------------------------
Prints the CREATE TABLE SQL statements for the given model module(s).
sqlall [modelmodule modelmodule ...]
--------------------
------------------------------------
Prints the CREATE TABLE and initial-data SQL statements for the given model module(s).
sqlclear [modelmodule modelmodule ...]
----------------------
--------------------------------------
Prints the DROP TABLE SQL statements for the given model module(s).
sqlindexes [modelmodule modelmodule ...]
------------------------
----------------------------------------
Prints the CREATE INDEX SQL statements for the given model module(s).
sqlinitialdata [modelmodule modelmodule ...]
----------------------------
--------------------------------------------
Prints the initial INSERT SQL statements for the given model module(s).
sqlreset [modelmodule modelmodule ...]
----------------------
--------------------------------------
Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given model module(s).
sqlsequencereset [modelmodule modelmodule ...]
------------------------------
----------------------------------------------
Prints the SQL statements for resetting PostgreSQL sequences for the given
model module(s).