Index: docs/topics/forms/modelforms.txt
===================================================================
--- docs/topics/forms/modelforms.txt	(revision 16337)
+++ docs/topics/forms/modelforms.txt	(working copy)
@@ -829,6 +829,29 @@
     ``inlineformset_factory`` uses ``modelformset_factory`` and marks
     ``can_delete=True``.
 
+.. highlight:: html+django
+
+If you manually render fields in the template, you can render
+``can_delete`` parameter with ``{{ form.DELETE }}``::
+
+    <form method="post" action="">
+        {{ formset.management_form }}
+        {% for form in formset %}
+            {{ form.id }}
+            <ul>
+                <li>{{ form.title }}</li>
+                {% if formset.can_delete %}
+                    <li>{{ form.DELETE }}</li>
+                {% enif %}
+            </ul>
+        {% endfor %}
+    </form>
+
+Similarly, if the formset has the ability to order (``can_order=True``), it is possible to render it
+with ``{{ form.ORDER }}``.
+
+.. highlight:: python
+
 More than one foreign key to the same model
 -------------------------------------------
 
