From 92918b5ed74940c3cd64864473e0414ca9e134c9 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 2 Sep 2005 19:05:51 +0000 Subject: [PATCH] Fixed ReST bugs in docs/django-admin.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@612 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/django-admin.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/django-admin.txt b/docs/django-admin.txt index f50f50962f..3f428161e0 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -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).