The property listing template, property_list.html, found in /path/to/repo/www/chapter_08/templates, is much like the other Django templates shown earlier in this chapter. We provide the values to the render process, which then produces the actual results:
<div class="container" style="margin-top: -100px;">
<div class="row">
<div class="col-md-6">
<h1>Property Listing</h1>
<div class="row extra">
<div class="col-md-2"><b>Name</b></div>
<div class="col-md-4">{{ prop_name }}</div>
</div><!-- end row -->
<div class="row extra">
<div class="col-md-2"><b>Type</b></div>
<div class="col-md-4">...