mirror of
https://github.com/endofunky/sidetiq.git
synced 2022-11-09 13:53:30 -05:00
Fix navigation menu paths.
This commit is contained in:
parent
75d075a3d7
commit
011f543cb2
2 changed files with 5 additions and 5 deletions
|
@ -1,13 +1,13 @@
|
|||
<div class="span3">
|
||||
<ul class="nav nav-list sidetiq-sidenav">
|
||||
<li>
|
||||
<a href="/sidetiq">
|
||||
<a href="<%= " #{root_path}sidetiq" %>">
|
||||
<i class="icon-chevron-right"></i>
|
||||
Home
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/sidetiq/locks">
|
||||
<a href="<%= "#{root_path}sidetiq/locks" %>">
|
||||
<i class="icon-chevron-right"></i>
|
||||
Locks
|
||||
</a>
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
<div class="span3">
|
||||
<ul class="nav nav-list sidetiq-sidenav">
|
||||
<li>
|
||||
<a href="/sidetiq">
|
||||
<a href="<%= "#{root_path}sidetiq" %>">
|
||||
<i class="icon-chevron-right"></i>
|
||||
Home
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/sidetiq/<%= @worker.name %>/schedule">
|
||||
<a href="<%= "#{root_path}sidetiq/#{@worker.name}/schedule" %>">
|
||||
<i class="icon-chevron-right"></i>
|
||||
Job Schedule
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/sidetiq/<%= @worker.name %>/history">
|
||||
<a href="<%= "#{root_path}sidetiq/#{@worker.name}/history" %>">
|
||||
<i class="icon-chevron-right"></i>
|
||||
Job History
|
||||
</a>
|
||||
|
|
Loading…
Reference in a new issue