13 lines
No EOL
384 B
HTML
13 lines
No EOL
384 B
HTML
{% extends '_base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}Log in{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Are you sure you want to delete friend code: {{ friend_code.friend_code }}?</h1>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<button type="submit">Confirm Delete</button>
|
|
<a href="{% url 'list_friend_codes' %}">Cancel</a>
|
|
</form>
|
|
{% endblock content %} |