This repository has been archived on 2025-04-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GestionaleITSPy/GestionaleITS/gestionale/templates/gestionale/delete/deleteticket.html
2024-10-09 21:10:49 +02:00

27 lines
809 B
HTML

<!-- Copyright (C) 2024 Nastro_ -->
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/. -->
{% extends "gestionale/base.html" %}
{% load static %}
{% block content %}
{% if user.is_authenticated %}
<div class="delete-reset-card">
<div>
<h3>Sei sicuro di chiudere il ticket {{ id }}?</h3>
<form method="post" action="/delete/ticket/{{ id }}">
{% csrf_token %}
<div class="form-buttons">
<button type="submit" class="pure-button button-warning">Si</button>
<a href="/tickets" class="pure-button pure-button-primary">No</a>
</div>
</form>
</div>
</div>
{% endif %}
{% endblock %}