Skip to content

Commit

Permalink
fixed failing stories
Browse files Browse the repository at this point in the history
  • Loading branch information
mseppae committed Oct 1, 2008
1 parent 45c6a83 commit 61fc407
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Expand Up @@ -12,6 +12,6 @@
<% end %>
</td>
<td><%= published_at_formatted article %></td>
<td><%= link_to h(article.author.name), admin_site_user_path(@site, article.author) %></td>
<td><%= link_to h(article.author_name), admin_site_user_path(@site, article.author) %></td>
<td><%= article.published? ? link_to("view", content_path(article), :class => 'view') : '&nbsp;' %></td>
</tr>
@@ -1,18 +1,15 @@
<% if @articles.size > 0 -%>

<p>
<%= link_to "New Article", new_admin_article_path(@site) %> &middot;
<%= link_to_function 'Reorder Articles', "articles_list.toggle(this, 'Done reordering');", :id => 'reorder_sections' %>
<%= image_tag 'indicator.gif', :id => 'articles_indicator', :style => 'display: none;' %>
</p>
a

<table id="articles" class="list">
<thead>
<tr>
<th scope="col">Article</th>
<% if @section.accept_comments? %>
<th scope="col">Comments</th>
<% end %>
<th scope="col">Comments</th>
<th scope="col">Published</th>
<th scope="col">Author</th>
<th scope="col">&nbsp;</th>
Expand Down

0 comments on commit 61fc407

Please sign in to comment.