diff options
Diffstat (limited to 'src/guff.cr')
-rw-r--r-- | src/guff.cr | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/guff.cr b/src/guff.cr index 8228e88..01e0cb4 100644 --- a/src/guff.cr +++ b/src/guff.cr @@ -1447,6 +1447,17 @@ module Guff </li> </ul> ", + + state_button: " + <a + href='#' + class='btn %s post-state' + title='Mark as %s.' + > + <i class='fa %s'></i> + %s + </a> + ", } def tabs(id : String) @@ -1465,6 +1476,36 @@ module Guff end end + STATES = [{ + id: "draft", + name: "Draft", + icon: "fa-wrench", + css: "btn-primary", + }, { + id: "posted", + name: "Posted", + icon: "fa-bullhorn", + css: "btn-default", + }, { + id: "deleted", + name: "Deleted", + icon: "fa-trash", + css: "btn-default", + }] + + private def state_buttons + @state_buttons ||= String.build do |io| + STATES.each do |row| + io << TEMPLATES[:state_button] % [ + h(row[:css]), + h(row[:name]), + h(row[:icon]), + h(row[:name]) + ] + end + end + end + ECR.def_to_s("src/views/admin-page.ecr") end |