Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {% extends 'base.html' %}
- {% load static %}
- {% block main_content %}
- <div class="edit-delete">
- <h2>Edit Profile</h2>
- <form action="{% url 'edit profile' pk=object.pk %}" method="post">
- {{ form.as_p }} <!-- Генерира формата автоматично -->
- <button class="edit-btn" type="submit">Edit</button> <!-- Бутон за изпращане -->
- {% csrf_token %} <!-- За защита от CSRF атаки -->
- </form>
- </div>
- {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement