mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-05 20:51:49 +02:00
revert DestructiveActionProjectForm renaming
This commit is contained in:
parent
030fb370ad
commit
64ce4cd967
2 changed files with 7 additions and 7 deletions
|
@ -242,7 +242,7 @@ class ProjectFormWithCaptcha(ProjectForm):
|
||||||
raise ValidationError(Markup(message))
|
raise ValidationError(Markup(message))
|
||||||
|
|
||||||
|
|
||||||
class DeleteProjectForm(FlaskForm):
|
class DestructiveActionProjectForm(FlaskForm):
|
||||||
"""Used for any important "delete" action linked to a project:
|
"""Used for any important "delete" action linked to a project:
|
||||||
|
|
||||||
- delete project itself
|
- delete project itself
|
||||||
|
|
|
@ -40,7 +40,7 @@ from ihatemoney.emails import send_creation_email
|
||||||
from ihatemoney.forms import (
|
from ihatemoney.forms import (
|
||||||
AdminAuthenticationForm,
|
AdminAuthenticationForm,
|
||||||
AuthenticationForm,
|
AuthenticationForm,
|
||||||
DeleteProjectForm,
|
DestructiveActionProjectForm,
|
||||||
EditProjectForm,
|
EditProjectForm,
|
||||||
EmptyForm,
|
EmptyForm,
|
||||||
ImportProjectForm,
|
ImportProjectForm,
|
||||||
|
@ -411,7 +411,7 @@ def reset_password():
|
||||||
def edit_project():
|
def edit_project():
|
||||||
edit_form = EditProjectForm(id=g.project.id)
|
edit_form = EditProjectForm(id=g.project.id)
|
||||||
import_form = ImportProjectForm(id=g.project.id)
|
import_form = ImportProjectForm(id=g.project.id)
|
||||||
delete_form = DeleteProjectForm(id=g.project.id)
|
delete_form = DestructiveActionProjectForm(id=g.project.id)
|
||||||
|
|
||||||
# Edit form
|
# Edit form
|
||||||
if edit_form.validate_on_submit():
|
if edit_form.validate_on_submit():
|
||||||
|
@ -508,7 +508,7 @@ def import_project():
|
||||||
|
|
||||||
@main.route("/<project_id>/delete", methods=["POST"])
|
@main.route("/<project_id>/delete", methods=["POST"])
|
||||||
def delete_project():
|
def delete_project():
|
||||||
form = DeleteProjectForm(id=g.project.id)
|
form = DestructiveActionProjectForm(id=g.project.id)
|
||||||
if form.validate():
|
if form.validate():
|
||||||
g.project.remove_project()
|
g.project.remove_project()
|
||||||
flash(_("Project successfully deleted"))
|
flash(_("Project successfully deleted"))
|
||||||
|
@ -798,7 +798,7 @@ def history():
|
||||||
|
|
||||||
any_ip_addresses = any(event["ip"] for event in history)
|
any_ip_addresses = any(event["ip"] for event in history)
|
||||||
|
|
||||||
delete_form = DeleteProjectForm()
|
delete_form = DestructiveActionProjectForm()
|
||||||
return render_template(
|
return render_template(
|
||||||
"history.html",
|
"history.html",
|
||||||
current_view="history",
|
current_view="history",
|
||||||
|
@ -814,7 +814,7 @@ def history():
|
||||||
@main.route("/<project_id>/erase_history", methods=["POST"])
|
@main.route("/<project_id>/erase_history", methods=["POST"])
|
||||||
def erase_history():
|
def erase_history():
|
||||||
"""Erase all history entries associated with this project."""
|
"""Erase all history entries associated with this project."""
|
||||||
form = DeleteProjectForm(id=g.project.id)
|
form = DestructiveActionProjectForm(id=g.project.id)
|
||||||
if not form.validate():
|
if not form.validate():
|
||||||
flash(
|
flash(
|
||||||
format_form_errors(form, _("Error deleting project history")),
|
format_form_errors(form, _("Error deleting project history")),
|
||||||
|
@ -833,7 +833,7 @@ def erase_history():
|
||||||
@main.route("/<project_id>/strip_ip_addresses", methods=["POST"])
|
@main.route("/<project_id>/strip_ip_addresses", methods=["POST"])
|
||||||
def strip_ip_addresses():
|
def strip_ip_addresses():
|
||||||
"""Strip ip addresses from history entries associated with this project."""
|
"""Strip ip addresses from history entries associated with this project."""
|
||||||
form = DeleteProjectForm(id=g.project.id)
|
form = DestructiveActionProjectForm(id=g.project.id)
|
||||||
if not form.validate():
|
if not form.validate():
|
||||||
flash(
|
flash(
|
||||||
format_form_errors(form, _("Error deleting recorded IP addresses")),
|
format_form_errors(form, _("Error deleting recorded IP addresses")),
|
||||||
|
|
Loading…
Reference in a new issue