Get your own Django server Result Size: 625 x 565
template.html
views.py
 
<!DOCTYPE html>
<html>
<body>

<h1>{{ name|rjust:20 }}</h1>

<p>In HTML the display does not show more than one space,
but if you view the page source you will see that there are
20 characters between &lt;h1&gt; and &lt;/h1&gt;.</p>

<p>Or, to demonstrate we can use a PRE element to see that "Tobias" is right aligned:</p>

<pre>King {{ name|rjust:20 }} Refsnes</pre>

<p>In views.py you can see what the name variable looks like.</p>

</body>
</html>                  
127.0.0.1:8000/testing