tutorial02.txt 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. .. _intro-tutorial02:
  2. =====================================
  3. Writing your first Django app, part 2
  4. =====================================
  5. This tutorial begins where :ref:`Tutorial 1 <intro-tutorial01>` left off. We're
  6. continuing the Web-poll application and will focus on Django's
  7. automatically-generated admin site.
  8. .. admonition:: Philosophy
  9. Generating admin sites for your staff or clients to add, change and delete
  10. content is tedious work that doesn't require much creativity. For that
  11. reason, Django entirely automates creation of admin interfaces for models.
  12. Django was written in a newsroom environment, with a very clear separation
  13. between "content publishers" and the "public" site. Site managers use the
  14. system to add news stories, events, sports scores, etc., and that content is
  15. displayed on the public site. Django solves the problem of creating a
  16. unified interface for site administrators to edit content.
  17. The admin isn't necessarily intended to be used by site visitors; it's for
  18. site managers.
  19. Activate the admin site
  20. =======================
  21. The Django admin site is not activated by default -- it's an opt-in thing. To
  22. activate the admin site for your installation, do these three things:
  23. * Add ``"django.contrib.admin"`` to your :setting:`INSTALLED_APPS` setting.
  24. * Run ``python manage.py syncdb``. Since you have added a new application
  25. to :setting:`INSTALLED_APPS`, the database tables need to be updated.
  26. * Edit your ``mysite/urls.py`` file and uncomment the lines below the
  27. "Uncomment this for admin:" comments. This file is a URLconf; we'll dig
  28. into URLconfs in the next tutorial. For now, all you need to know is that
  29. it maps URL roots to applications. In the end, you should have a
  30. ``urls.py`` file that looks like this:
  31. .. parsed-literal::
  32. from django.conf.urls.defaults import *
  33. # Uncomment the next two lines to enable the admin:
  34. **from django.contrib import admin**
  35. **admin.autodiscover()**
  36. urlpatterns = patterns('',
  37. # Example:
  38. # (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
  39. # Uncomment the next line to enable admin documentation:
  40. # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
  41. # Uncomment the next line for to enable the admin:
  42. **(r'^admin/(.*)', admin.site.root),**
  43. )
  44. (The bold lines are the ones that needed to be uncommented.)
  45. Start the development server
  46. ============================
  47. Let's start the development server and explore the admin site.
  48. Recall from Tutorial 1 that you start the development server like so:
  49. .. code-block:: bash
  50. python manage.py runserver
  51. Now, open a Web browser and go to "/admin/" on your local domain -- e.g.,
  52. http://127.0.0.1:8000/admin/. You should see the admin's login screen:
  53. .. image:: _images/admin01.png
  54. :alt: Django admin login screen
  55. Enter the admin site
  56. ====================
  57. Now, try logging in. (You created a superuser account in the first part of this
  58. tutorial, remember?) You should see the Django admin index page:
  59. .. image:: _images/admin02t.png
  60. :alt: Django admin index page
  61. You should see a few other types of editable content, including groups, users
  62. and sites. These are core features Django ships with by default.
  63. Make the poll app modifiable in the admin
  64. =========================================
  65. But where's our poll app? It's not displayed on the admin index page.
  66. Just one thing to do: We need to tell the admin that ``Poll``
  67. objects have an admin interface. Edit the ``mysite/polls/admin.py`` file and
  68. add the following to the bottom of the file::
  69. from mysite.polls.models import Poll
  70. from django.contrib import admin
  71. admin.site.register(Poll)
  72. Now reload the Django admin page to see your changes. Note that you don't have
  73. to restart the development server -- the server will auto-reload your project,
  74. so any modifications code will be seen immediately in your browser.
  75. Explore the free admin functionality
  76. ====================================
  77. Now that we've registered ``Poll``, Django knows that it should be displayed on
  78. the admin index page:
  79. .. image:: _images/admin03t.png
  80. :alt: Django admin index page, now with polls displayed
  81. Click "Polls." Now you're at the "change list" page for polls. This page
  82. displays all the polls in the database and lets you choose one to change it.
  83. There's the "What's up?" poll we created in the first tutorial:
  84. .. image:: _images/admin04t.png
  85. :alt: Polls change list page
  86. Click the "What's up?" poll to edit it:
  87. .. image:: _images/admin05t.png
  88. :alt: Editing form for poll object
  89. Things to note here:
  90. * The form is automatically generated from the Poll model.
  91. * The different model field types (:class:`~django.db.models.DateTimeField`,
  92. :class:`~django.db.models.CharField`) correspond to the appropriate HTML
  93. input widget. Each type of field knows how to display itself in the Django
  94. admin.
  95. * Each :class:`~django.db.models.DateTimeField` gets free JavaScript
  96. shortcuts. Dates get a "Today" shortcut and calendar popup, and times get
  97. a "Now" shortcut and a convenient popup that lists commonly entered times.
  98. The bottom part of the page gives you a couple of options:
  99. * Save -- Saves changes and returns to the change-list page for this type of
  100. object.
  101. * Save and continue editing -- Saves changes and reloads the admin page for
  102. this object.
  103. * Save and add another -- Saves changes and loads a new, blank form for this
  104. type of object.
  105. * Delete -- Displays a delete confirmation page.
  106. Change the "Date published" by clicking the "Today" and "Now" shortcuts. Then
  107. click "Save and continue editing." Then click "History" in the upper right.
  108. You'll see a page listing all changes made to this object via the Django admin,
  109. with the timestamp and username of the person who made the change:
  110. .. image:: _images/admin06t.png
  111. :alt: History page for poll object
  112. Customize the admin form
  113. ========================
  114. Take a few minutes to marvel at all the code you didn't have to write. When you
  115. call ``admin.site.register(Poll)``, Django just lets you edit the object and
  116. "guess" at how to display it within the admin. Often you'll want to control how
  117. the admin looks and works. You'll do this by telling Django about the options
  118. you want when you register the object.
  119. Let's see how this works by reordering the fields on the edit form. Replace the
  120. ``admin.site.register(Poll)`` line with::
  121. class PollAdmin(admin.ModelAdmin):
  122. fields = ['pub_date', 'question']
  123. admin.site.register(Poll, PollAdmin)
  124. You'll follow this pattern -- create a model admin object, then pass it as the
  125. second argument to ``admin.site.register()`` -- any time you need to change the
  126. admin options for an object.
  127. This particular change above makes the "Publication date" come before the
  128. "Question" field:
  129. .. image:: _images/admin07.png
  130. :alt: Fields have been reordered
  131. This isn't impressive with only two fields, but for admin forms with dozens
  132. of fields, choosing an intuitive order is an important usability detail.
  133. And speaking of forms with dozens of fields, you might want to split the form
  134. up into fieldsets::
  135. class PollAdmin(admin.ModelAdmin):
  136. fieldsets = [
  137. (None, {'fields': ['question']}),
  138. ('Date information', {'fields': ['pub_date']}),
  139. ]
  140. admin.site.register(Poll, PollAdmin)
  141. The first element of each tuple in ``fieldsets`` is the title of the fieldset.
  142. Here's what our form looks like now:
  143. .. image:: _images/admin08t.png
  144. :alt: Form has fieldsets now
  145. You can assign arbitrary HTML classes to each fieldset. Django provides a
  146. ``"collapse"`` class that displays a particular fieldset initially collapsed.
  147. This is useful when you have a long form that contains a number of fields that
  148. aren't commonly used::
  149. class PollAdmin(admin.ModelAdmin):
  150. fieldsets = [
  151. (None, {'fields': ['question']}),
  152. ('Date information', {'fields': ['pub_date'], 'classes': ['collapse']}),
  153. ]
  154. .. image:: _images/admin09.png
  155. :alt: Fieldset is initially collapsed
  156. Adding related objects
  157. ======================
  158. OK, we have our Poll admin page. But a ``Poll`` has multiple ``Choices``, and
  159. the admin page doesn't display choices.
  160. Yet.
  161. There are two ways to solve this problem. The first register ``Choice`` with the
  162. admin just as we did with ``Poll``. That's easy::
  163. from mysite.polls.models import Choice
  164. admin.site.register(Choice)
  165. Now "Choices" is an available option in the Django admin. The "Add choice" form
  166. looks like this:
  167. .. image:: _images/admin10.png
  168. :alt: Choice admin page
  169. In that form, the "Poll" field is a select box containing every poll in the
  170. database. Django knows that a :class:`~django.db.models.ForeignKey` should be
  171. represented in the admin as a ``<select>`` box. In our case, only one poll
  172. exists at this point.
  173. Also note the "Add Another" link next to "Poll." Every object with a
  174. ``ForeignKey`` relationship to another gets this for free. When you click "Add
  175. Another," you'll get a popup window with the "Add poll" form. If you add a poll
  176. in that window and click "Save," Django will save the poll to the database and
  177. dynamically add it as the selected choice on the "Add choice" form you're
  178. looking at.
  179. But, really, this is an inefficient way of adding Choice objects to the system.
  180. It'd be better if you could add a bunch of Choices directly when you create the
  181. Poll object. Let's make that happen.
  182. Remove the ``register()`` call for the Choice model. Then, edit the ``Poll``
  183. registration code to read::
  184. poll = models.ForeignKey(Poll, edit_inline=models.STACKED, num_in_admin=3)
  185. class ChoiceInline(admin.StackedInline):
  186. model = Choice
  187. extra = 3
  188. class PollAdmin(admin.ModelAdmin):
  189. fieldsets = [
  190. (None, {'fields': ['question']}),
  191. ('Date information', {'fields': ['pub_date'], 'classes': ['collapse']}),
  192. ]
  193. inlines = [ChoiceInline]
  194. admin.site.register(Poll, PollAdmin)
  195. This tells Django: "Choice objects are edited on the Poll admin page. By
  196. default, provide enough fields for 3 choices."
  197. Load the "Add poll" page to see how that looks:
  198. .. image:: _images/admin11t.png
  199. :alt: Add poll page now has choices on it
  200. It works like this: There are three slots for related Choices -- as specified
  201. by ``extra`` -- and each time you come back to the "Change" page for an
  202. already-created object, you get another three extra slots.
  203. One small problem, though. It takes a lot of screen space to display all the
  204. fields for entering related Choice objects. For that reason, Django offers a
  205. tabular way of displaying inline related objects; you just need to change
  206. the ``ChoiceInline`` declaration to read::
  207. class ChoiceInline(admin.TabularInline):
  208. #...
  209. With that ``TabularInline`` (instead of ``StackedInline``), the
  210. related objects are displayed in a more compact, table-based format:
  211. .. image:: _images/admin12.png
  212. :alt: Add poll page now has more compact choices
  213. Customize the admin change list
  214. ===============================
  215. Now that the Poll admin page is looking good, let's make some tweaks to the
  216. "change list" page -- the one that displays all the polls in the system.
  217. Here's what it looks like at this point:
  218. .. image:: _images/admin04t.png
  219. :alt: Polls change list page
  220. By default, Django displays the ``str()`` of each object. But sometimes it'd be
  221. more helpful if we could display individual fields. To do that, use the
  222. ``list_display`` admin option, which is a tuple of field names to display, as
  223. columns, on the change list page for the object::
  224. class PollAdmin(admin.ModelAdmin):
  225. # ...
  226. list_display = ('question', 'pub_date')
  227. Just for good measure, let's also include the ``was_published_today`` custom
  228. method from Tutorial 1::
  229. class PollAdmin(admin.ModelAdmin):
  230. # ...
  231. list_display = ('question', 'pub_date', 'was_published_today')
  232. Now the poll change list page looks like this:
  233. .. image:: _images/admin13t.png
  234. :alt: Polls change list page, updated
  235. You can click on the column headers to sort by those values -- except in the
  236. case of the ``was_published_today`` header, because sorting by the output of
  237. an arbitrary method is not supported. Also note that the column header for
  238. ``was_published_today`` is, by default, the name of the method (with
  239. underscores replaced with spaces). But you can change that by giving that
  240. method a ``short_description`` attribute::
  241. def was_published_today(self):
  242. return self.pub_date.date() == datetime.date.today()
  243. was_published_today.short_description = 'Published today?'
  244. Let's add another improvement to the Poll change list page: Filters. Add the
  245. following line to ``PollAdmin``::
  246. list_filter = ['pub_date']
  247. That adds a "Filter" sidebar that lets people filter the change list by the
  248. ``pub_date`` field:
  249. .. image:: _images/admin14t.png
  250. :alt: Polls change list page, updated
  251. The type of filter displayed depends on the type of field you're filtering on.
  252. Because ``pub_date`` is a DateTimeField, Django knows to give the default
  253. filter options for DateTimeFields: "Any date," "Today," "Past 7 days,"
  254. "This month," "This year."
  255. This is shaping up well. Let's add some search capability::
  256. search_fields = ['question']
  257. That adds a search box at the top of the change list. When somebody enters
  258. search terms, Django will search the ``question`` field. You can use as many
  259. fields as you'd like -- although because it uses a ``LIKE`` query behind the
  260. scenes, keep it reasonable, to keep your database happy.
  261. Finally, because Poll objects have dates, it'd be convenient to be able to
  262. drill down by date. Add this line::
  263. date_hierarchy = 'pub_date'
  264. That adds hierarchical navigation, by date, to the top of the change list page.
  265. At top level, it displays all available years. Then it drills down to months
  266. and, ultimately, days.
  267. Now's also a good time to note that change lists give you free pagination. The
  268. default is to display 50 items per page. Change-list pagination, search boxes,
  269. filters, date-hierarchies and column-header-ordering all work together like you
  270. think they should.
  271. Customize the admin look and feel
  272. =================================
  273. Clearly, having "Django administration" at the top of each admin page is
  274. ridiculous. It's just placeholder text.
  275. That's easy to change, though, using Django's template system. The Django admin
  276. is powered by Django itself, and its interfaces use Django's own template
  277. system. (How meta!)
  278. Open your settings file (``mysite/settings.py``, remember) and look at the
  279. :setting:`TEMPLATE_DIRS` setting. :setting:`TEMPLATE_DIRS` is a tuple of
  280. filesystem directories to check when loading Django templates. It's a search
  281. path.
  282. By default, :setting:`TEMPLATE_DIRS` is empty. So, let's add a line to it, to
  283. tell Django where our templates live::
  284. TEMPLATE_DIRS = (
  285. "/home/my_username/mytemplates", # Change this to your own directory.
  286. )
  287. Now copy the template ``admin/base_site.html`` from within the default Django
  288. admin template directory (``django/contrib/admin/templates``) into an ``admin``
  289. subdirectory of whichever directory you're using in :setting:`TEMPLATE_DIRS`.
  290. For example, if your :setting:`TEMPLATE_DIRS` includes
  291. ``"/home/my_username/mytemplates"``, as above, then copy
  292. ``django/contrib/admin/templates/admin/base_site.html`` to
  293. ``/home/my_username/mytemplates/admin/base_site.html``. Don't forget that
  294. ``admin`` subdirectory.
  295. Then, just edit the file and replace the generic Django text with your own
  296. site's name as you see fit.
  297. Note that any of Django's default admin templates can be overridden. To
  298. override a template, just do the same thing you did with ``base_site.html`` --
  299. copy it from the default directory into your custom directory, and make
  300. changes.
  301. Astute readers will ask: But if :setting:`TEMPLATE_DIRS` was empty by default,
  302. how was Django finding the default admin templates? The answer is that, by
  303. default, Django automatically looks for a ``templates/`` subdirectory within
  304. each app package, for use as a fallback. See the :ref:`template loader
  305. documentation <template-loaders>` for full information.
  306. Customize the admin index page
  307. ==============================
  308. On a similar note, you might want to customize the look and feel of the Django
  309. admin index page.
  310. By default, it displays all the apps in :setting:`INSTALLED_APPS` that have been
  311. registered with the admin application, in alphabetical order. You may want to
  312. make significant changes to the layout. After all, the index is probably the
  313. most important page of the admin, and it should be easy to use.
  314. The template to customize is ``admin/index.html``. (Do the same as with
  315. ``admin/base_site.html`` in the previous section -- copy it from the default
  316. directory to your custom template directory.) Edit the file, and you'll see it
  317. uses a template variable called ``app_list``. That variable contains every
  318. installed Django app. Instead of using that, you can hard-code links to
  319. object-specific admin pages in whatever way you think is best.
  320. When you're comfortable with the admin site, read :ref:`part 3 of this tutorial
  321. <intro-tutorial03>` to start working on public poll views.