mirror of https://github.com/django/django.git
[4.2.x] Refs #34140 -- Made minor edits to rst code-blocks.
Backport of 9cf2a5df70
from main
This commit is contained in:
parent
de41657724
commit
8d2ac000e4
|
@ -120,9 +120,13 @@ do them faster than the template language can::
|
||||||
# of the Python objects
|
# of the Python objects
|
||||||
len(my_bicycles)
|
len(my_bicycles)
|
||||||
|
|
||||||
# Django template filter
|
.. code-block:: html+django
|
||||||
# slower still, because it will have to count them in Python anyway,
|
|
||||||
# and because of template language overheads
|
<!--
|
||||||
|
Django template filter
|
||||||
|
slower still, because it will have to count them in Python anyway,
|
||||||
|
and because of template language overheads
|
||||||
|
-->
|
||||||
{{ my_bicycles|length }}
|
{{ my_bicycles|length }}
|
||||||
|
|
||||||
Generally speaking, the most appropriate level for the job is the lowest-level
|
Generally speaking, the most appropriate level for the job is the lowest-level
|
||||||
|
|
|
@ -254,7 +254,9 @@ Use the ``django.test.Client`` class to make requests.
|
||||||
|
|
||||||
/login/
|
/login/
|
||||||
|
|
||||||
...with this POST data::
|
...with this POST data:
|
||||||
|
|
||||||
|
.. code-block:: text
|
||||||
|
|
||||||
name=fred&passwd=secret
|
name=fred&passwd=secret
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue