Clicking the link of Test does not redirect to the page that show information of test
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
| LAVA Dashboard (deprecated) |
Fix Released
|
Medium
|
Nicholas Schutt |
Bug Description
Like in this page,
https:/
when you click the link in the Test column, it will redirect to this same page.
Where it should redirect to the page that show the detail information of the specified Test.
Related branches
- Senthil Kumaran S: Approve on 2013-02-25
-
Diff: 12 lines (+1/-1)1 file modifieddashboard_app/templates/dashboard_app/_test_run_list_table.html (+1/-1)
Andy Doan (doanac) wrote : | #1 |
Changed in lava-dashboard: | |
milestone: | none → 2013.02 |
importance: | Undecided → Medium |
Changed in lava-dashboard: | |
assignee: | nobody → Nicholas Schutt (nick-schutt) |
status: | New → Confirmed |
status: | Confirmed → In Progress |
Nicholas Schutt (nick-schutt) wrote : | #2 |
Removed the link from:
templates/
$ bzr diff -r397..398 _test_run_
=== modified file 'dashboard_
--- dashboard_
+++ dashboard_
@@ -14,7 +14,7 @@
{% for test_run in test_run_list %}
<tr>
<td><a href="{{ test_run.
- <td><a href="{{ test_run.
+ <td>{{ test_run.test }}</td>
<td>{{ test_run.
<td>{{ test_run.
<td>{{ test_run.
Nicholas Schutt (nick-schutt) wrote : | #3 |
Fixed in rev number 400
Changed in lava-dashboard: | |
status: | In Progress → Fix Committed |
Changed in lava-dashboard: | |
milestone: | 2013.02 → 2013.03 |
Changed in lava-dashboard: | |
status: | Fix Committed → Fix Released |
Actually, I think we should remove the hyper-link for the test column. I recently removed the "test" view from the dashboard because it was useless.
Maybe when we get proper test-case management, we can add a useful link.