admin controllers
This commit is contained in:
parent
8d899581bd
commit
6a564f0a25
3 changed files with 11 additions and 5 deletions
|
@ -16,8 +16,8 @@ class Admin::OrdergroupsController < Admin::BaseController
|
||||||
def destroy
|
def destroy
|
||||||
@ordergroup = Ordergroup.find(params[:id])
|
@ordergroup = Ordergroup.find(params[:id])
|
||||||
@ordergroup.destroy
|
@ordergroup.destroy
|
||||||
redirect_to admin_ordergroups_url, :notice => "Bestellgruppe wurde gelöscht"
|
redirect_to admin_ordergroups_url, notice: t('admin.ordergroups.destroy.notice')
|
||||||
rescue => error
|
rescue => error
|
||||||
redirect_to admin_ordergroups_url, :alert => "Bestellgruppe konnte nicht gelöscht werden: #{error}"
|
redirect_to admin_ordergroups_url, alert: t('admin.ordergroups.destroy.error')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -13,8 +13,8 @@ class Admin::WorkgroupsController < Admin::BaseController
|
||||||
def destroy
|
def destroy
|
||||||
@workgroup = Workgroup.find(params[:id])
|
@workgroup = Workgroup.find(params[:id])
|
||||||
@workgroup.destroy
|
@workgroup.destroy
|
||||||
redirect_to admin_workgroups_url, :notice => "Arbeitsgruppe wurde gelöscht"
|
redirect_to admin_workgroups_url, notice: t('admin.ordergroups.destroy.notice')
|
||||||
rescue => error
|
rescue => error
|
||||||
redirect_to admin_workgroups_url, :alert => "Arbeitsgruppe konnte nicht gelöscht werden: #{error}"
|
redirect_to admin_workgroups_url, alert: t('admin.ordergroups.destroy.error')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -51,6 +51,9 @@ de:
|
||||||
contact: 'Kontakt'
|
contact: 'Kontakt'
|
||||||
address: 'Adresse'
|
address: 'Adresse'
|
||||||
members: 'Mitglieder'
|
members: 'Mitglieder'
|
||||||
|
destroy:
|
||||||
|
notice: 'Bestellgruppe wurde gelöscht'
|
||||||
|
error: 'Bestellgruppe konnte nicht gelöscht werden: #{error}'
|
||||||
users:
|
users:
|
||||||
index:
|
index:
|
||||||
title: 'Admin/Benutzerinnen'
|
title: 'Admin/Benutzerinnen'
|
||||||
|
@ -100,3 +103,6 @@ de:
|
||||||
workgroups:
|
workgroups:
|
||||||
name: 'Name'
|
name: 'Name'
|
||||||
members: 'Mitglieder'
|
members: 'Mitglieder'
|
||||||
|
destroy:
|
||||||
|
notice: 'Arbeitsgruppe wurde gelöscht'
|
||||||
|
error: 'Arbeitsgruppe konnte nicht gelöscht werden: #{error}'
|
Loading…
Reference in a new issue