﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
16653	Document kwargs support for urlresolvers.resolve	jedie	Christopher Medrela	"
The section ""Reversing admin URLs"" on the page https://docs.djangoproject.com/en/1.3/ref/contrib/admin/#reversing-admin-urls should IMHO clarify that the parameters must be used as the keyword argument ""args"", e.g.:


{{{#!diff
diff --git a/docs/ref/contrib/admin/index.txt b/docs/ref/contrib/admin/index.txt
index beff94e..d8cdd3c 100644
--- a/docs/ref/contrib/admin/index.txt
+++ b/docs/ref/contrib/admin/index.txt
@@ -1696,7 +1696,7 @@ accessible using Django's :ref:`URL reversing system <naming-url-patterns>`.
 The :class:`AdminSite` provides the following named URL patterns:
 
     ======================  ========================  =============
-    Page                    URL name                  Parameters
+    Page                    URL name                  args
     ======================  ========================  =============
     Index                   ``index``
     Logout                  ``logout``
@@ -1706,10 +1706,15 @@ The :class:`AdminSite` provides the following named URL patterns:
     Application index page  ``app_list``              ``app_label``
     ======================  ========================  =============
 
+Example go get the index page of the auth contrib app::
+
+    >>> from django.core import urlresolvers
+    >>> app_index_url = urlresolvers.reverse('admin:app_list', args=('auth',))
+
 Each :class:`ModelAdmin` instance provides an additional set of named URLs:
 
     ======================  ===============================================   =============
-    Page                    URL name                                          Parameters
+    Page                    URL name                                          args
     ======================  ===============================================   =============
     Changelist              ``{{ app_label }}_{{ model_name }}_changelist``
     Add                     ``{{ app_label }}_{{ model_name }}_add``
}}}"	Cleanup/optimization	closed	Documentation	1.3	Normal	fixed		krzysiumed@…	Ready for checkin	1	0	0	0	1	0
