Add sdg manager section to admin

Allow a user to become an sdg manager
This commit is contained in:
taitus
2020-11-25 18:57:19 +01:00
committed by Javi Martín
parent fb5965fe63
commit 9fe24aec9d
24 changed files with 301 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
module Admin::Header
extend ActiveSupport::Concern
def header(options: {})
provide(:title) do
title
end
tag.h2 options do
title
end
end
end