review and fix delete_blog_button
This commit is contained in:
parent
9d42082b52
commit
d03150a396
2 changed files with 2 additions and 7 deletions
|
@ -1,10 +1,7 @@
|
|||
from ast import Delete, arg
|
||||
from itertools import chain
|
||||
from django import forms
|
||||
from django.conf import settings
|
||||
from django.contrib import messages
|
||||
from django.contrib.auth.mixins import LoginRequiredMixin
|
||||
from django.contrib.auth.models import User
|
||||
from django.core.cache import cache
|
||||
from django.core.cache.utils import make_template_fragment_key
|
||||
from django.core.exceptions import PermissionDenied
|
||||
|
@ -19,7 +16,7 @@ from django.http import (
|
|||
HttpResponseBadRequest,
|
||||
)
|
||||
from django.shortcuts import get_object_or_404
|
||||
from django.urls import reverse , reverse_lazy
|
||||
from django.urls import reverse
|
||||
from django.utils import timezone
|
||||
from django.utils.html import format_html
|
||||
from django.utils.functional import cached_property
|
||||
|
@ -32,7 +29,6 @@ from django.views.generic import (
|
|||
UpdateView,
|
||||
View,
|
||||
CreateView,
|
||||
DeleteView,
|
||||
)
|
||||
from django.views.generic.detail import (
|
||||
SingleObjectMixin,
|
||||
|
|
|
@ -22,5 +22,4 @@
|
|||
{% endif %}
|
||||
{% endfor %}
|
||||
<button type="submit" style="display: inline;" name="action" value="Save" >{{ _('Save') }} </button>
|
||||
<!-- <button type="submit" style="background-color: red; float: right;" name="action" value="Delete" > {{ _('Delete') }} </button> -->
|
||||
</form>
|
Loading…
Reference in a new issue