Commit 7b1dae3cdc4d4dcd2ff587d131b9e8e7064e2a9f
Exists in
master
and in
29 other branches
Merge commit 'refs/merge-requests/398' of git://gitorious.org/noosfero/noosfero …
…into merge-requests/398 Conflicts: app/views/content_viewer/view_page.rhtml
Showing
1 changed file
with
7 additions
and
8 deletions
Show diff stats
app/views/content_viewer/view_page.rhtml
| ... | ... | @@ -40,14 +40,6 @@ |
| 40 | 40 | </div> |
| 41 | 41 | <% end %> |
| 42 | 42 | |
| 43 | -<% if !@page.tags.empty? %> | |
| 44 | - <div id="article-tags"> | |
| 45 | - <%= _("This article's tags:") %> | |
| 46 | - <%= @page.tags.map { |t| link_to(t, :controller => 'profile', :profile => @profile.identifier, :action => 'tags', :id => t.name ) }.join("\n") %> | |
| 47 | - </div> | |
| 48 | -<% end %> | |
| 49 | - | |
| 50 | - | |
| 51 | 43 | <%= render :partial => 'shared/disabled_enterprise' %> |
| 52 | 44 | |
| 53 | 45 | <% if NOOSFERO_CONF['addthis_enabled'] %> |
| ... | ... | @@ -83,6 +75,13 @@ |
| 83 | 75 | </div> |
| 84 | 76 | <% end %> |
| 85 | 77 | |
| 78 | +<% if !@page.tags.empty? %> | |
| 79 | + <div id="article-tags"> | |
| 80 | + <%= _("This article's tags:") %> | |
| 81 | + <%= @page.tags.map { |t| link_to(t, :controller => 'profile', :profile => @profile.identifier, :action => 'tags', :id => t.name ) }.join("\n") %> | |
| 82 | + </div> | |
| 83 | +<% end %> | |
| 84 | + | |
| 86 | 85 | <%= display_source_info(@page) %> |
| 87 | 86 | |
| 88 | 87 | <div class="comments" id="comments_list"> | ... | ... |