mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-26 16:15:25 +00:00
1cbdf76df6
* Log for failed login attempts * Logger configuration for logging to file * interface fixes * login log fix, added logged in too * bootstrap icons setup * font-awesome icons replaced with bootstrap icons * replaced i-tags with django_bootstrap_icons * removed icons library from project * bug fix --------- Co-authored-by: catborise <catborise@gmail.com>
27 lines
No EOL
856 B
HTML
27 lines
No EOL
856 B
HTML
{% extends "base.html" %}
|
|
{% load django_bootstrap5 %}
|
|
{% load bootstrap_icons %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block page_heading %}{{ title }}{% endblock page_heading %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="offset-3 col-6">
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<div class="alert alert-warning">
|
|
{%trans "Are you sure you want to delete" %} "{{ object }}"?
|
|
</div>
|
|
<div class="mb-0 float-end">
|
|
<a class="btn btn-primary" href="javascript:history.back()">{% bs_icon 'x' %} {% trans "Cancel" %}</a>
|
|
<button type="submit" class="btn btn-danger">
|
|
{% bs_icon 'trash' %} {% trans "Delete" %}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |