review and fix delete_blog_button

This commit is contained in:
DELL 2022-10-08 12:15:04 +07:00
parent 9d42082b52
commit d03150a396
2 changed files with 2 additions and 7 deletions

View file

@ -1,10 +1,7 @@
from ast import Delete, arg
from itertools import chain
from django import forms from django import forms
from django.conf import settings from django.conf import settings
from django.contrib import messages from django.contrib import messages
from django.contrib.auth.mixins import LoginRequiredMixin from django.contrib.auth.mixins import LoginRequiredMixin
from django.contrib.auth.models import User
from django.core.cache import cache from django.core.cache import cache
from django.core.cache.utils import make_template_fragment_key from django.core.cache.utils import make_template_fragment_key
from django.core.exceptions import PermissionDenied from django.core.exceptions import PermissionDenied
@ -19,7 +16,7 @@ from django.http import (
HttpResponseBadRequest, HttpResponseBadRequest,
) )
from django.shortcuts import get_object_or_404 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 import timezone
from django.utils.html import format_html from django.utils.html import format_html
from django.utils.functional import cached_property from django.utils.functional import cached_property
@ -32,7 +29,6 @@ from django.views.generic import (
UpdateView, UpdateView,
View, View,
CreateView, CreateView,
DeleteView,
) )
from django.views.generic.detail import ( from django.views.generic.detail import (
SingleObjectMixin, SingleObjectMixin,
@ -134,7 +130,7 @@ class OrganizationMixin(OrganizationBase):
def dispatch(self, request, *args, **kwargs): def dispatch(self, request, *args, **kwargs):
try: try:
self.organization_id = int(kwargs["pk"] ) self.organization_id = int(kwargs["pk"])
self.organization = get_object_or_404(Organization, id=self.organization_id) self.organization = get_object_or_404(Organization, id=self.organization_id)
except Http404: except Http404:
key = kwargs.get(self.slug_url_kwarg, None) key = kwargs.get(self.slug_url_kwarg, None)

View file

@ -22,5 +22,4 @@
{% endif %} {% endif %}
{% endfor %} {% endfor %}
<button type="submit" style="display: inline;" name="action" value="Save" >{{ _('Save') }} </button> <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> </form>