I've already made lots of search but couldn't find the appropriate answer to my question.
Is it possible to submit form from template in admin panel? I have a template like this:
{% block content %}
{% load static %}
<form action="find_tr" method="POST">
{% csrf_token %}
Enter url: <input type="text" name="url"><br><br>
<input type="submit">
</form>
{% endblock %}
I can submit it from template itself but , what i want is to make it possible through admin panel.
For now it looks like this:
The same should be possible from admin panel:
Is there any way to achieve it?