Sha256: b025333cdc6a70fd936b9eb2a8801343be7f1cf471c8452b22d14b4fe6501060

Contents?: true

Size: 692 Bytes

Versions: 2

Compression:

Stored size: 692 Bytes

Contents

<h1>Topics</h1>
<% if current_user %>
	<%= link_to "New Topic", new_topic_path %>
<% end %>
<% if @topics.empty? %>
	There are currently no topics.
<% else %>
	<table id='topics'>
		<thead>
			<tr>
				<td>Subject</td>
				<td>Post count</td>
				<td>Last post at</td>
			</tr>	
		</thead>
		<tbody>
			<% @topics.each do |topic| %>
				<tr>
					<td id='topic_subject'><%= link_to topic.subject, topic %></td>
					<td id='post_count'><%= topic.posts_count %></td>
					<td id='last_post'>
							last post was <%= time_ago_in_words(topic.last_post.created_at) %> ago by <%= topic.last_post.user %>
					</td>
				</tr>	
			<% end %>
		</tbody>
	</table>
<% end %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
redlumxn-forem-0.0.2 app/views/forem/topics/index.html.erb
redlumxn-forem-0.0.1 app/views/forem/topics/index.html.erb