Is it possible to pass values from custom forms to a function in django view without using models ?
For example in my html I have :
<form method="POST" class="post-form">
<input type="text" name="roll_number">
<button type="submit" class="save btn btn-default">Search</button>
</form>
Is it possible to pass roll_number to view without creating a model class?