64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load static %}
 | |
| <head>
 | |
|     <link  href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
 | |
|     <!--<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
 | |
|           integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">-->
 | |
| 
 | |
|     <link href=”https://cdn.pydata.org/bokeh/release/bokeh-3.7.1.min.css" rel=”stylesheet” type=”text/css”>
 | |
|     <link href=”https://cdn.pydata.org/bokeh/release/bokeh-widgets-3.7.1.min.css" rel=”stylesheet” type=”text/css”>
 | |
| </head>
 | |
| 
 | |
| <nav class="navbar navbar-expand-lg navbar-light bg-light">
 | |
|     <a class="navbar-brand" href="#">
 | |
|       <img src="{% static 'isotopapp/damaris_logo.png' %}" alt="Logo" height="30" class="d-inline-block align-text-top">
 | |
|     </a>
 | |
|   <div class="collapse navbar-collapse" id="navbarSupportedContent">
 | |
|     <ul class="navbar-nav mr-auto">
 | |
|       <li class="nav-item">
 | |
| 	<a class="nav-link" href="{% url 'home' %}">Isotopes</a>
 | |
|       </li>
 | |
|       <li class="nav-item">
 | |
| 	<a class="nav-link" href="{% url 'sfg' %}">Position</a>
 | |
|       </li>
 | |
| 
 | |
|       <li class="nav-item">
 | |
| 	{% load admin_urls %}
 | |
| 	<a class="nav-link" href="{% url 'admin:index' %}">Admin</a>
 | |
|       </li>
 | |
|     </ul>
 | |
|   </div>
 | |
| </nav>
 | |
| <style>
 | |
|     .center {
 | |
|         margin: auto;
 | |
|         width: 60%;
 | |
|         border: 3px solid #90befb;
 | |
|         border: 3px solid #a5addb;
 | |
|         padding: 10px;
 | |
|     }
 | |
|     .center {
 | |
|         margin: auto;
 | |
|         width: 40%;
 | |
|         padding: 10px;
 | |
|     }
 | |
| 
 | |
|     caption {
 | |
|         caption-side: bottom;
 | |
|         padding: 8px;
 | |
|         font-weight: normal;
 | |
|         font-size: 0.8rem;
 | |
|         text-align: left;
 | |
|     }
 | |
| 
 | |
|     .table-striped {
 | |
|         --bs-table-striped-bg: rgba(213, 217, 255, 0.7);
 | |
|     }
 | |
|     </style>
 | |
| <body>
 | |
| {% block content %}
 | |
| {% endblock %}
 | |
| 
 | |
| <script src="https://cdn.bokeh.org/bokeh/release/bokeh-3.7.1.min.js"></script>
 | |
| <script src="https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.7.1.min.js"></script>
 | |
| </body>
 |