Fix link path in dashborad.

This commit is contained in:
takezoe
2013-07-31 12:04:09 +09:00
parent 9d4a052ecc
commit fd84b3f1c4
2 changed files with 5 additions and 5 deletions

View File

@@ -13,19 +13,19 @@
<div class="span3">
<ul class="nav nav-pills nav-stacked">
<li@if(filter == "all"){ class="active"}>
<a href="/dashboard/issues/repos@condition.toURL">
<a href="@path/dashboard/issues/repos@condition.toURL">
<span class="count-right">@allCount</span>
In your repositories
</a>
</li>
<li@if(filter == "assigned"){ class="active"}>
<a href="/dashboard/issues/assigned@condition.toURL">
<a href="@path/dashboard/issues/assigned@condition.toURL">
<span class="count-right">@assignedCount</span>
Assigned to you
</a>
</li>
<li@if(filter == "created_by"){ class="active"}>
<a href="/dashboard/issues/created_by@condition.toURL">
<a href="@path/dashboard/issues/created_by@condition.toURL">
<span class="count-right">@createdByCount</span>
Created by you
</a>