How to pass data from template to view

I have in template data {{form.field}}. How to pass it to another view ?

that depends how the form is from, do you have an forms.py? If so you can use the form in every view you want just import it out of the file.

You don’t. You don’t pass data from a template to anywhere.

A template doesn’t “do” anything other than provide the rendering engine a string that is used as the basis for creating an HTML page (or fragment of a page).

The rendering engine creates a page from a template and sends it out to the browser. What happens on the browser is up to it.