mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-31 15:19:08 +01:00
This commit is contained in:
parent
bbb1e001e2
commit
8c5badf0b8
14 changed files with 19 additions and 19 deletions
|
@ -1,9 +1,9 @@
|
||||||
- provide(:title, group_title(@group))
|
- provide(:title, group_title(@group))
|
||||||
= render 'static/mobile_nav'
|
= render 'static/mobile_nav'
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
.col-md-3.col-sm-3
|
.col-md-3.col-sm-4
|
||||||
= render 'shared/sidebar'
|
= render 'shared/sidebar'
|
||||||
.col-md-9.col-xs-12.col-sm-9.j2-col-reset
|
.col-md-9.col-xs-12.col-sm-8.j2-col-reset
|
||||||
= render 'layouts/messages'
|
= render 'layouts/messages'
|
||||||
|
|
||||||
#timeline
|
#timeline
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
- provide(:title, generate_title("Inbox"))
|
- provide(:title, generate_title("Inbox"))
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
.row
|
.row
|
||||||
.col-md-3.col-xs-12.col-sm-3.hidden-xs
|
.col-md-3.col-xs-12.col-sm-4.hidden-xs
|
||||||
= render 'inbox/sidebar'
|
= render 'inbox/sidebar'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-8
|
||||||
= render 'layouts/messages'
|
= render 'layouts/messages'
|
||||||
#entries
|
#entries
|
||||||
- @inbox.each do |i|
|
- @inbox.each do |i|
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
%button#load-more-btn.btn.btn-default{type: :button, data: { current_page: @inbox.current_page }}
|
%button#load-more-btn.btn.btn-default{type: :button, data: { current_page: @inbox.current_page }}
|
||||||
= t 'views.actions.load'
|
= t 'views.actions.load'
|
||||||
|
|
||||||
.col-md-9.col-xs-12.col-sm-9.visible-xs
|
.col-md-9.col-xs-12.col-sm-8.visible-xs
|
||||||
= render 'inbox/sidebar'
|
= render 'inbox/sidebar'
|
||||||
|
|
||||||
= render "shared/links"
|
= render "shared/links"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.col-md-3.col-sm-3.col-xs-12
|
.col-md-3.col-sm-4.col-xs-12
|
||||||
.panel.panel-default.hidden-xs
|
.panel.panel-default.hidden-xs
|
||||||
.list-group
|
.list-group
|
||||||
= list_group_item t('views.moderation.tabs.all'), moderation_path
|
= list_group_item t('views.moderation.tabs.all'), moderation_path
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
.row
|
.row
|
||||||
= render 'moderation/moderation_tabs'
|
= render 'moderation/moderation_tabs'
|
||||||
.col-md-9.col-sm-9.col-xs-12
|
.col-md-9.col-sm-8.col-xs-12
|
||||||
- @reports.each do |r|
|
- @reports.each do |r|
|
||||||
= render 'moderation/moderationbox', report: r
|
= render 'moderation/moderationbox', report: r
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.col-md-3.col-xs-12.col-sm-3
|
.col-md-3.col-xs-12.col-sm-4
|
||||||
.panel.panel-default.hidden-xs
|
.panel.panel-default.hidden-xs
|
||||||
.list-group
|
.list-group
|
||||||
= list_group_item t('views.notifications.tabs.all'), notifications_path, badge: Notification.for(current_user).where(new: true).count
|
= list_group_item t('views.notifications.tabs.all'), notifications_path, badge: Notification.for(current_user).where(new: true).count
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
= render 'notifications/notification_nav'
|
= render 'notifications/notification_nav'
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
= render 'notification_tabs'
|
= render 'notification_tabs'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-8
|
||||||
.panel.panel-default
|
.panel.panel-default
|
||||||
%ul#notifications.list-group
|
%ul#notifications.list-group
|
||||||
- @notifications.each do |notification|
|
- @notifications.each do |notification|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
- provide(:title, generate_title("Public Timeline"))
|
- provide(:title, generate_title("Public Timeline"))
|
||||||
= render 'static/mobile_nav'
|
= render 'static/mobile_nav'
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
.col-md-3.col-sm-3
|
.col-md-3.col-sm-4
|
||||||
= render 'shared/sidebar'
|
= render 'shared/sidebar'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-8
|
||||||
= render 'layouts/messages'
|
= render 'layouts/messages'
|
||||||
|
|
||||||
#timeline
|
#timeline
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- provide(:title, generate_title("Service Settings"))
|
- provide(:title, generate_title("Service Settings"))
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
= render 'user/settings_tabs'
|
= render 'user/settings_tabs'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-8
|
||||||
= render 'layouts/messages'
|
= render 'layouts/messages'
|
||||||
.panel.panel-default
|
.panel.panel-default
|
||||||
.panel-body
|
.panel-body
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
- if user_signed_in?
|
- if user_signed_in?
|
||||||
= render 'static/mobile_nav'
|
= render 'static/mobile_nav'
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
.col-md-3.col-sm-3
|
.col-md-3.col-sm-4
|
||||||
= render 'shared/sidebar'
|
= render 'shared/sidebar'
|
||||||
.col-md-9.col-xs-12.col-sm-9.j2-col-reset
|
.col-md-9.col-xs-12.col-sm-8.j2-col-reset
|
||||||
= render 'layouts/messages'
|
= render 'layouts/messages'
|
||||||
#timeline
|
#timeline
|
||||||
- @timeline.each do |answer|
|
- @timeline.each do |answer|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- provide(:title, generate_title("Account Settings"))
|
- provide(:title, generate_title("Account Settings"))
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
= render 'user/settings_tabs'
|
= render 'user/settings_tabs'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-8
|
||||||
= render 'layouts/messages'
|
= render 'layouts/messages'
|
||||||
.panel.panel-default
|
.panel.panel-default
|
||||||
.panel-body
|
.panel-body
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.col-md-3.col-xs-12.col-sm-3
|
.col-md-3.col-xs-12.col-sm-4
|
||||||
.panel.panel-default
|
.panel.panel-default
|
||||||
.list-group
|
.list-group
|
||||||
= list_group_item t('views.settings.tabs.account'), edit_user_registration_path
|
= list_group_item t('views.settings.tabs.account'), edit_user_registration_path
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- provide(:title, generate_title("Your Data"))
|
- provide(:title, generate_title("Your Data"))
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
= render 'settings_tabs'
|
= render 'settings_tabs'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-8
|
||||||
.panel.panel-default
|
.panel.panel-default
|
||||||
.panel-body
|
.panel-body
|
||||||
%h2 Your Profile Data
|
%h2 Your Profile Data
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- provide(:title, generate_title("Privacy Settings"))
|
- provide(:title, generate_title("Privacy Settings"))
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
= render 'settings_tabs'
|
= render 'settings_tabs'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-8
|
||||||
= render 'layouts/messages'
|
= render 'layouts/messages'
|
||||||
.panel.panel-default
|
.panel.panel-default
|
||||||
.panel-body
|
.panel-body
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- provide(:title, generate_title("Theme Settings"))
|
- provide(:title, generate_title("Theme Settings"))
|
||||||
.container.j2-page
|
.container.j2-page
|
||||||
= render 'settings_tabs'
|
= render 'settings_tabs'
|
||||||
.col-md-9.col-xs-12.col-sm-9
|
.col-md-9.col-xs-12.col-sm-8
|
||||||
= render 'layouts/messages'
|
= render 'layouts/messages'
|
||||||
.panel.panel-default
|
.panel.panel-default
|
||||||
.panel-body
|
.panel-body
|
||||||
|
|
Loading…
Reference in a new issue