23 lines
853 B
Text
23 lines
853 B
Text
-# Copyright (c) 2010-2012, Diaspora Inc. This file is
|
|
-# licensed under the Affero General Public License version 3 or later. See
|
|
-# the COPYRIGHT file.
|
|
|
|
.clearfix.conversations-title
|
|
%h3= t(".inbox")
|
|
= link_to t(".new_conversation"), new_conversation_path, class: "btn btn-default pull-right"
|
|
|
|
- flash.each do |name, msg|
|
|
.alert{class: "alert-#{flash_class name}", role: "alert"}
|
|
= msg
|
|
|
|
.conversation-inbox#conversation-inbox
|
|
.stream.conversations
|
|
- if @visibilities.count > 0
|
|
= render partial: "conversations/conversation", collection: @visibilities, as: :visibility
|
|
- else
|
|
.no-messages
|
|
%i
|
|
= t(".no_messages")
|
|
|
|
= will_paginate @visibilities, previous_label: "«", next_label: "»", inner_window: 1, outer_window: 0,
|
|
renderer: WillPaginate::ActionView::BootstrapLinkRenderer
|