Sha256: 24d275011f0a9f410606c1a1457123e559cb20eeeaeb31dd2df619bb548aac7c

Contents?: true

Size: 662 Bytes

Versions: 28

Compression:

Stored size: 662 Bytes

Contents

<%= javascript_include_tag 'notify_user/notification' %>
<%= stylesheet_link_tag 'notify_user/notify_user' %>

<div id="notifications_list">
	<div class="mark_as_read">
		<%= link_to 'Mark all as read', notify_user_notifications_mark_all_path %>
	</div>

	<div class="inner">
	<% @notifications.each do |notification| %>
		<div class="item <%= !notification.read? ? 'unread' : 'read' %>">
			<div class="content"><%= link_to notification.message, notify_user_path(notification), :class => 'message', :id => notification.id %></div>
			<div class="time_ago">
				<%= time_ago_in_words(notification.created_at) %> ago
			</div>
		</div>
	<% end %>
	</div>

</div>

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
notify_user-0.3.2 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.3.1 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.1.4 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.1.3 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.1.2 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.1.1 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.30 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.29 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.28 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.27 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.26 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.25 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.24 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.23 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.22 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.20 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.19 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.18 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.16 app/views/notify_user/base_notifications/index.html.erb
notify_user-0.0.15 app/views/notify_user/base_notifications/index.html.erb