fixed bug with number only tags breaking js
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
<div class="index">
|
||||
<h1>Bans</h1>
|
||||
|
||||
<table class="striped">
|
||||
<table class="striped" width="100%">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>User</th>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<h1>Show Ban</h1>
|
||||
<ul>
|
||||
<li><strong>User</strong>: <%= @ban.user.name %></li>
|
||||
<li><strong>Expires</strong>: <%= @ban.expires_at %></li>
|
||||
<li><strong>Expires</strong>: <%= compact_time @ban.expires_at %></li>
|
||||
<li><strong>Reason</strong>: <%= @ban.reason %></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -9,5 +9,5 @@
|
||||
<%= nav_link_to("Notes", notes_path(:group_by => "post")) %>
|
||||
<%= nav_link_to("Wiki", wiki_pages_path(:title => "help:home")) %>
|
||||
<%= nav_link_to("Forum", forum_topics_path, :class => (CurrentUser.user.has_forum_been_updated? ? "forum-updated" : nil)) %>
|
||||
<%= nav_link_to("»".html_safe, site_map_path, :id => "site-map-link") %>
|
||||
<%= nav_link_to("More »".html_safe, site_map_path, :id => "site-map-link") %>
|
||||
</menu>
|
||||
@@ -10,5 +10,6 @@
|
||||
<% if CurrentUser.is_janitor? %>
|
||||
<%= nav_link_to("Dashboard", moderator_dashboard_path) %>
|
||||
<% end %>
|
||||
<%= nav_link_to("More »".html_safe, site_map_path) %>
|
||||
</ul>
|
||||
</div>
|
||||
Reference in New Issue
Block a user