How to create following generic delete post dialog of Django?

I want to create following code in bss for implement in Django.

 <h1>Post Delete</h1>
      <form method="post">{% csrf_token %}
Are you sure you want to delete "{{ object }}" ?
<input type="submit" value="Submit" />
</form>

Especially i dont know how to implement the bolded part in bss. < input type="submit" value="Submit" / > Please assist me.

  • Lightwarrior