Fixed code sample syntax, typos.
authorMichael Elsdoerfer <michael@elsdoerfer.info>
Fri, 23 Oct 2009 01:09:53 +0000 (03:09 +0200)
committerMichael Elsdoerfer <michael@elsdoerfer.info>
Fri, 23 Oct 2009 01:09:53 +0000 (03:09 +0200)
README

diff --git a/README b/README
index 4439918b7367f6b30c5c5b087da86fa61576f80c..6a161f5ef31651595b2d599040812321afa4fa99 100644 (file)
--- a/README
+++ b/README
@@ -502,17 +502,21 @@ Template Utilities
 \r
 If you want the give your users the ability to interact with your table (e.g.\r
 change the ordering), you will need to create urls with the appropriate\r
-queries. To simplify that process, django-tables comes with helpful\r
+queries. To simplify that process, django-tables comes with helpful\r
 templatetag:\r
 \r
-    {% set_url_param "sort" "name" %}       # ?sort=name\r
-    {% set_url_param "sort" %}              # delete "sort" param\r
+    {% set_url_param sort="name" %}       # ?sort=name\r
+    {% set_url_param sort="" %}           # delete "sort" param\r
 \r
 The template library can be found in 'django_modules.app.templates.tables'.\r
 If you add ''django_modules.app' to your INSTALLED_APPS setting, you will\r
 be able to do:\r
 \r
     {% load tables %}\r
+    \r
+Note: The tag requires the current request to be available as ``request`` \r
+in the context (usually, this means activating the Django request context\r
+processor).\r
 \r
 \r
 TODO\r