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">
|
<div class="span3">
|
||||||
<ul class="nav nav-list sidetiq-sidenav">
|
<ul class="nav nav-list sidetiq-sidenav">
|
||||||
<li>
|
<li>
|
||||||
<a href="/sidetiq">
|
<a href="<%= " #{root_path}sidetiq" %>">
|
||||||
<i class="icon-chevron-right"></i>
|
<i class="icon-chevron-right"></i>
|
||||||
Home
|
Home
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="/sidetiq/locks">
|
<a href="<%= "#{root_path}sidetiq/locks" %>">
|
||||||
<i class="icon-chevron-right"></i>
|
<i class="icon-chevron-right"></i>
|
||||||
Locks
|
Locks
|
||||||
</a>
|
</a>
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
<div class="span3">
|
<div class="span3">
|
||||||
<ul class="nav nav-list sidetiq-sidenav">
|
<ul class="nav nav-list sidetiq-sidenav">
|
||||||
<li>
|
<li>
|
||||||
<a href="/sidetiq">
|
<a href="<%= "#{root_path}sidetiq" %>">
|
||||||
<i class="icon-chevron-right"></i>
|
<i class="icon-chevron-right"></i>
|
||||||
Home
|
Home
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="/sidetiq/<%= @worker.name %>/schedule">
|
<a href="<%= "#{root_path}sidetiq/#{@worker.name}/schedule" %>">
|
||||||
<i class="icon-chevron-right"></i>
|
<i class="icon-chevron-right"></i>
|
||||||
Job Schedule
|
Job Schedule
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="/sidetiq/<%= @worker.name %>/history">
|
<a href="<%= "#{root_path}sidetiq/#{@worker.name}/history" %>">
|
||||||
<i class="icon-chevron-right"></i>
|
<i class="icon-chevron-right"></i>
|
||||||
Job History
|
Job History
|
||||||
</a>
|
</a>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue