Compare commits
No commits in common. "c79dbc7cfac6806f468b7c010b51b9985e850b6e" and "f73dc7c3cf9a12897e7b9e5a0cdadef9a10de961" have entirely different histories.
c79dbc7cfa
...
f73dc7c3cf
|
@ -1,11 +1,6 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
0.7.3
|
|
||||||
-----
|
|
||||||
|
|
||||||
* 'show_deleted_objects' boolean attribute in GASDeleteView
|
|
||||||
|
|
||||||
0.7.2
|
0.7.2
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|
|
@ -7,16 +7,14 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<p>{{ confirmation_text }}</p>
|
<p>{{ confirmation_text }}</p>
|
||||||
|
|
||||||
{% if show_deleted_objects %}
|
<h2>{% trans "Summary" %}</h2>
|
||||||
<h2>{% trans "Summary" %}</h2>
|
<ul>
|
||||||
<ul>
|
{% for model_name, object_count in deleted_model_count.items %}
|
||||||
{% for model_name, object_count in deleted_model_count.items %}
|
<li>{{ model_name|capfirst }}: {{ object_count }}</li>
|
||||||
<li>{{ model_name|capfirst }}: {{ object_count }}</li>
|
{% endfor %}
|
||||||
{% endfor %}
|
</ul>
|
||||||
</ul>
|
<h2>{% trans "Objects" %}</h2>
|
||||||
<h2>{% trans "Objects" %}</h2>
|
<ul>{{ deleted_objects|unordered_list }}</ul>
|
||||||
<ul>{{ deleted_objects|unordered_list }}</ul>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
<form method="post" action=".">{% csrf_token %}
|
<form method="post" action=".">{% csrf_token %}
|
||||||
<button type="submit">{% trans 'Delete' %}</button>
|
<button type="submit">{% trans 'Delete' %}</button>
|
||||||
|
|
|
@ -217,7 +217,6 @@ class GASDeleteView(GASMixin, DeleteView):
|
||||||
template_name = "gas/delete_confirmation.html"
|
template_name = "gas/delete_confirmation.html"
|
||||||
confirmation_text = _("Are you sure you want to delete {object}?")
|
confirmation_text = _("Are you sure you want to delete {object}?")
|
||||||
deleted_text = _("{object} deleted.")
|
deleted_text = _("{object} deleted.")
|
||||||
show_deleted_objects = True
|
|
||||||
|
|
||||||
def get_confirmation_text(self):
|
def get_confirmation_text(self):
|
||||||
return self.confirmation_text.format(object=self.object)
|
return self.confirmation_text.format(object=self.object)
|
||||||
|
@ -240,15 +239,11 @@ class GASDeleteView(GASMixin, DeleteView):
|
||||||
def get_context_data(self, **kwargs):
|
def get_context_data(self, **kwargs):
|
||||||
ctx = super().get_context_data(**kwargs)
|
ctx = super().get_context_data(**kwargs)
|
||||||
|
|
||||||
if self.show_deleted_objects:
|
deleted_objects, deleted_model_count = self.get_deleted_objects()
|
||||||
deleted_objects, deleted_model_count = self.get_deleted_objects()
|
|
||||||
else:
|
|
||||||
deleted_objects = deleted_model_count = None
|
|
||||||
|
|
||||||
ctx.update({
|
ctx.update({
|
||||||
'confirmation_text': self.get_confirmation_text(),
|
'confirmation_text': self.get_confirmation_text(),
|
||||||
'cancel_url': self.get_success_url(),
|
'cancel_url': self.get_success_url(),
|
||||||
'show_deleted_objects': self.show_deleted_objects,
|
|
||||||
'deleted_objects': deleted_objects,
|
'deleted_objects': deleted_objects,
|
||||||
'deleted_model_count': deleted_model_count,
|
'deleted_model_count': deleted_model_count,
|
||||||
})
|
})
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = django-gas
|
name = django-gas
|
||||||
version = 0.7.3
|
version = 0.7.2
|
||||||
description = An alternative to django admin
|
description = An alternative to django admin
|
||||||
long_description = file: readme.md, changelog.md, collaborators.md
|
long_description = file: readme.md, changelog.md, collaborators.md
|
||||||
long_description_content_type = text/markdown
|
long_description_content_type = text/markdown
|
||||||
|
|
Loading…
Reference in New Issue