Just like it doesn't output the <form> tags around your form, Django
will never add any buttons by default - this is always left to you to
decide what, where and how you want your form to be submitted.
To make a reset button, simply put a <button> inside your <form> that
has a type of "reset". When you click the button, your browser will
reset the form to initial values.
Cheers
Tom