File size: 1,247 Bytes
9e71caf 0422b98 b35b6d0 7b0f09e 0422b98 9e71caf 0422b98 b35b6d0 0422b98 9e71caf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FSD Test Case Manager | Jira Style</title>
<meta name="description" content="FSD Test Case Manager - Jira-style interface for managing test cases linked to FSDs and User Stories">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<testcase-dashboard></testcase-dashboard>
<script src="components/testcase-dashboard.js"></script>
<script>
// Simple edit functionality demonstration
document.addEventListener('click', function(e) {
if (e.target.classList.contains('edit-btn')) {
const card = e.target.closest('.testcase-card');
if (card) {
// In a real app, this would open a modal or inline editor
alert(`Editing test case ${card.dataset.id}`);
}
}
});
</script>
</body>
</html>
|