mirror of
https://github.com/fergalmoran/dss.git
synced 2026-02-13 11:33:57 +00:00
15 lines
449 B
HTML
15 lines
449 B
HTML
{% extends 'views/dlg/_DialogBase.html' %}
|
|
|
|
{% load account %}
|
|
{% load static %}
|
|
{% load socialaccount %}
|
|
{% block header %}
|
|
<h3>You sure about this chief??</h3>
|
|
{% endblock %}
|
|
{% block content %}
|
|
Delete this comment?
|
|
{% endblock %}
|
|
{% block primarybutton %}Cancel{% endblock %}
|
|
{% block extrabuttons %}
|
|
<button type="button" class="btn btn-success" data-dismiss="modal" id="yes-no-positive">Proceed</button>
|
|
{% endblock %} |