82c7712613
- Created a new job_detail.html template extending base.html - Implemented a macro for rendering nested data structures - Added sections for job identification, schedule & timing, status, configuration, execution history, and results - Included a timeline for execution history with visual indicators for job status - Displayed job metrics including total executions, success rate, and average duration - Handled cases for displaying results or indicating absence of results based on job status
36 lines
1016 B
HTML
36 lines
1016 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Recon Ranger</title>
|
|
<link id="favicon" rel="icon" type="image/x-icon" href="/static/images/favicon.ico">
|
|
<link rel="stylesheet" href="/static/css/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<div class="menu">
|
|
<div class="logo">
|
|
<a href="#">Recon Ranger</a>
|
|
</div>
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="/results">Results</a></li>
|
|
<li><a href="/api/docs/">API</a></li>
|
|
<li><a href="mailto:someone@example.com">Contact</a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<footer>
|
|
{% block footer %}© 2026 ASB Financial Crime{% endblock %}
|
|
</footer>
|
|
</body>
|
|
|
|
</html> |