You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					31 lines
				
				1019 B
			
		
		
			
		
	
	
					31 lines
				
				1019 B
			| 
								 
											3 years ago
										 
									 | 
							
								<!doctype html>
							 | 
						||
| 
								 | 
							
								<head>
							 | 
						||
| 
								 | 
							
								  <title>{% block title %}{% endblock %} - Datest</title>
							 | 
						||
| 
								 | 
							
								  <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
							 | 
						||
| 
								 | 
							
								  <script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
							 | 
						||
| 
								 | 
							
								</head>
							 | 
						||
| 
								 | 
							
								<body>
							 | 
						||
| 
								 | 
							
								<nav>
							 | 
						||
| 
								 | 
							
								  <h1>Datest</h1>
							 | 
						||
| 
								 | 
							
								  <ul>
							 | 
						||
| 
								 | 
							
								    {% if g.user %}
							 | 
						||
| 
								 | 
							
								      <li><a href="{{ url_for('testcase.overview') }}">Testcase</a>
							 | 
						||
| 
								 | 
							
								      <li><a href="{{ url_for('testsuite.overview') }}">Testsuite</a>
							 | 
						||
| 
								 | 
							
								      <li><a href="{{ url_for('reports.overview') }}">Reports</a>
							 | 
						||
| 
								 | 
							
								    {% else %}
							 | 
						||
| 
								 | 
							
								      <li><a href="{{ url_for('testcase.overview') }}">Testcase</a>
							 | 
						||
| 
								 | 
							
								      <li><a href="{{ url_for('testsuite.overview') }}">Testsuite</a>
							 | 
						||
| 
								 | 
							
								      <li><a href="{{ url_for('reports.overview') }}">Reports</a>
							 | 
						||
| 
								 | 
							
								    {% endif %}
							 | 
						||
| 
								 | 
							
								  </ul>
							 | 
						||
| 
								 | 
							
								</nav>
							 | 
						||
| 
								 | 
							
								<section class="content">
							 | 
						||
| 
								 | 
							
								  <header>
							 | 
						||
| 
								 | 
							
								    {% block header %}{% endblock %}
							 | 
						||
| 
								 | 
							
								  </header>
							 | 
						||
| 
								 | 
							
								  {% for message in get_flashed_messages() %}
							 | 
						||
| 
								 | 
							
								    <div class="flash">{{ message }}</div>
							 | 
						||
| 
								 | 
							
								  {% endfor %}
							 | 
						||
| 
								 | 
							
								  {% block content %}{% endblock %}
							 | 
						||
| 
								 | 
							
								</section>
							 | 
						||
| 
								 | 
							
								</body>
							 |