Ticket #11808: admin-typo.patch

File admin-typo.patch, 819 bytes (added by Ivan Giuliani, 15 years ago)
  • docs/ref/contrib/admin/index.txt

    diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
    index 584672e..c23a372 100644
    a b the admin application URL dispatching handler to render the pages that deal  
    845845with model instances CRUD operations. As a result, completely overriding these
    846846methods will significantly change the behavior of the admin application.
    847847
    848 One comon reason for overriding these methods is to augment the context data
     848One common reason for overriding these methods is to augment the context data
    849849that is provided to the template that renders the view. In the following
    850850example, the change view is overridden so that the rendered template is
    851851provided some extra mapping data that would not otherwise be available::
Back to Top