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
|
||||
@ordergroup = Ordergroup.find(params[:id])
|
||||
@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
|
||||
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
|
||||
|
|
|
@ -13,8 +13,8 @@ class Admin::WorkgroupsController < Admin::BaseController
|
|||
def destroy
|
||||
@workgroup = Workgroup.find(params[:id])
|
||||
@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
|
||||
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
|
||||
|
|
|
@ -51,6 +51,9 @@ de:
|
|||
contact: 'Kontakt'
|
||||
address: 'Adresse'
|
||||
members: 'Mitglieder'
|
||||
destroy:
|
||||
notice: 'Bestellgruppe wurde gelöscht'
|
||||
error: 'Bestellgruppe konnte nicht gelöscht werden: #{error}'
|
||||
users:
|
||||
index:
|
||||
title: 'Admin/Benutzerinnen'
|
||||
|
@ -100,3 +103,6 @@ de:
|
|||
workgroups:
|
||||
name: 'Name'
|
||||
members: 'Mitglieder'
|
||||
destroy:
|
||||
notice: 'Arbeitsgruppe wurde gelöscht'
|
||||
error: 'Arbeitsgruppe konnte nicht gelöscht werden: #{error}'
|
Loading…
Reference in a new issue