Ticket #15710: that-that.patch

File that-that.patch, 1.1 KB (added by Aymeric Augustin, 13 years ago)
  • docs/topics/http/shortcuts.txt

     
    2424
    2525   :func:`render()` is the same as a call to
    2626   :func:`render_to_response()` with a `context_instance` argument that
    27    that forces the use of a :class:`~django.template.RequestContext`.
     27   forces the use of a :class:`~django.template.RequestContext`.
    2828
    2929Required arguments
    3030------------------
  • docs/topics/db/multi-db.txt

     
    454454
    455455Django's admin doesn't have any explicit support for multiple
    456456databases. If you want to provide an admin interface for a model on a
    457 database other than that that specified by your router chain, you'll
     457database other than that specified by your router chain, you'll
    458458need to write custom :class:`~django.contrib.admin.ModelAdmin` classes
    459459that will direct the admin to use a specific database for content.
    460460
Back to Top