diff --git a/inventory/templates/dashboard/index.html b/inventory/templates/dashboard/index.html index 6e1bf5ac53..9e8a8fc2df 100644 --- a/inventory/templates/dashboard/index.html +++ b/inventory/templates/dashboard/index.html @@ -107,23 +107,23 @@

Weekly Todo list

document.getElementById("id_choice").onchange = function() { var option = this.value; if (option === '0') { - window.location.href = '/index/'; + window.location.href = 'index/'; } else if (option === '1') { - window.location.href = 'inventory/casing/'; + window.location.href = 'casing/'; } else if (option === '2') { - window.location.href = 'inventory/phase2_smt/'; + window.location.href = 'phase2_smt/'; }else if (option === '3') { - window.location.href = 'inventory/phase1_tht/'; + window.location.href = 'phase1_tht/'; }else if (option === '4') { - window.location.href = 'inventory/phase3_tunning/'; + window.location.href = 'phase3_tunning/'; }else if (option === '5') { - window.location.href = 'inventory/monitor_assembly/'; + window.location.href = 'monitor_assembly/'; }else if (option === '6') { - window.location.href = 'inventory/communication_config/'; + window.location.href = 'communication_config/'; }else if (option === '7') { - window.location.href = 'inventory/analysis/'; + window.location.href = 'analysis/'; }else if (option === '8') { - window.location.href = 'inventory/correction/'; + window.location.href = 'correction/'; } };