bit of pages link cleanup

This commit is contained in:
Torsten 2022-11-25 16:17:54 +02:00
parent a2d79d397d
commit 0d159912f9
5 changed files with 68 additions and 60 deletions

View File

@ -1,4 +1,5 @@
class Cms::PagesController < ApplicationController
module Cms
class PagesController < CmsController
before_action :set_cms_page, only: %i[ show edit update destroy ]
# GET /cms/pages
@ -55,4 +56,5 @@ class Cms::PagesController < ApplicationController
def cms_page_params
params.fetch(:cms_page, {})
end
end
end

View File

@ -33,5 +33,9 @@ module Cms
@@files.collect{ |file| Page.new(file) }
end
def self.find(name)
Page.new(name + ".yaml")
end
end
end

View File

@ -1,7 +1,7 @@
%h1 Editing cms_page
%h1 Editing #{@cms_page.name}
= render 'form'
= link_to 'Show', @cms_page
= link_to 'Show', cms_page_url(@cms_page.name)
\|
= link_to 'Back', cms_pages_path

View File

@ -17,15 +17,17 @@
- @cms_pages.each do |cms_page|
%tr
%td.whitespace-nowrap.px-4.py-2.text-gray-700
= link_to cms_page.name , cms_page.name
= link_to cms_page.name , cms_page_path(cms_page.name)
%td.whitespace-nowrap.px-4.py-2.text-gray-700
= cms_page.template
%td.whitespace-nowrap.px-4.py-2.text-gray-700
= cms_page.content.length
%td.whitespace-nowrap.px-4.py-2
%strong.rounded.bg-green-100.px-3.text-xs.font-medium.text-green-700{:class => "py-1.5"}
= link_to 'Show', cms_page_path(cms_page , id: cms_page.name)
= link_to 'Show', cms_page_path(cms_page.name)
%strong.rounded.bg-amber-100.px-3.text-xs.font-medium.text-amber-700{:class => "py-1.5"}
= link_to 'Edit', edit_cms_page_path(cms_page , id: cms_page.name)
= link_to 'Edit', edit_cms_page_path(cms_page.name)
= link_to 'New Page', new_cms_page_path
%section
%a.inline-block.rounded.border.border-indigo-600.bg-indigo-600.px-12.py-3.text-sm.font-medium.text-white.hover:bg-transparent.hover:text-indigo-600.focus:outline-none.focus:ring.active:text-indigo-500{:href => new_cms_page_path}
New Page

View File

@ -1,6 +1,6 @@
%p#notice= notice
= link_to 'Edit', edit_cms_page_path(@cms_page)
= link_to 'Edit', edit_cms_page_path(@cms_page.name)
\|
= link_to 'Back', cms_pages_path