Retrospring/app/views/layouts/feedback.html.haml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
418 B
Plaintext
Raw Normal View History

2022-01-21 15:33:37 -08:00
.container
2023-01-04 06:08:06 -08:00
.card.bg-primary.text-bg-primary.my-3
.card-body
%h1= t(".heading")
2022-01-21 23:17:09 -08:00
- unless params[:action] == "consent"
2022-01-21 15:33:37 -08:00
.card
.list-group.list-group-horizontal-sm.text-center
= list_group_item t(".tab.bugs"), feedback_bugs_path
= list_group_item t(".tab.features"), feedback_features_path
2022-01-21 15:33:37 -08:00
.card
.card-body
= yield
= render 'shared/links'
2022-01-21 15:33:37 -08:00
:ruby
2022-01-21 23:17:09 -08:00
parent_layout "base"