Created
March 30, 2019 18:53
-
-
Save pranavcode/2cf3971506627572c8def06d995f3edb to your computer and use it in GitHub Desktop.
Velotio - HashiCorp Consul Part 2 - Django template for the view that shows MongoDB connection and setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
<link href="https://fonts.googleapis.com/css?family=Armata" rel="stylesheet"> | |
<title>Django-Mongo-Consul</title> | |
</head> | |
<body class="bg-dark text-white p-5" style="font-family: Armata"> | |
<div class="p-4 border"> | |
<div class="m-2"> | |
<b>Django Database Connection</b> | |
</div> | |
<table class="table table-dark"> | |
<thead> | |
<tr> | |
<th scope="col">#</th> | |
<th scope="col">Property</th> | |
<th scope="col">Value</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>1</td> | |
<td>Mongo Hosts</td> | |
<td>{% for host in mongo_hosts %}{{ host }}<br/>{% endfor %}</td> | |
</tr> | |
<tr> | |
<td>2</td> | |
<td>Mongo Primary Address</td> | |
<td>{{ mongo_primary_host }}</td> | |
</tr> | |
<tr> | |
<td>3</td> | |
<td>Mongo Connected Address</td> | |
<td>{{ mongo_connected_host }}</td> | |
</tr> | |
<tr> | |
<td>4</td> | |
<td>Mongo - Is Primary?</td> | |
<td>{{ mongo_is_primary }}</td> | |
</tr> | |
<tr> | |
<td>5</td> | |
<td>Mongo - Is Secondary?</td> | |
<td>{{ mongo_is_secondary }}</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> | |
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment