RAG_AI_V2 / templates /list_dbs.html
WebashalarForML's picture
Update templates/list_dbs.html
e209a78 verified
raw
history blame
3.65 kB
{% extends 'base.html' %}
{% block content %}
<style>
/* Full-page setup */
html, body {
height: 100%;
margin: 0;
}
.container {
display: flex;
flex-direction: column;
height: 50vh; /* Full viewport height */
justify-content: center;
align-items: center;
}
/* Card styling */
.card {
margin: auto;
background-color: #2c2c3e;
color: #f5f5f5;
border: none;
width: 50%;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Refined shadow effect */
max-height: calc(50vh - 50px); /* Adjust to fit within view */
overflow: hidden; /* Ensures no overflow from child elements */
}
/* Fixed header */
.card-header {
background-color: #181831;
border-bottom: 2px solid #444;
padding: 1rem;
text-align: center;
position: sticky; /* Keeps header fixed */
top: 0;
z-index: 1000; /* Ensures it stays above scrollable content */
}
.card-body {
max-height: 60vh; /* Limits height of scrollable area */
overflow-y: auto; /* Adds vertical scrolling */
}
/* Scrollbar customization */
.card-body::-webkit-scrollbar {
width: 8px;
}
.card-body::-webkit-scrollbar-thumb {
background-color: #444; /* Thumb color */
border-radius: 4px; /* Rounded scrollbar edges */
}
.card-body::-webkit-scrollbar-thumb:hover {
background-color: #555; /* Thumb hover color */
}
.card-body::-webkit-scrollbar-track {
background-color: #2c2c3e; /* Track background */
}
/* List group items */
.list-group-item {
background-color: #2c2c3e;
color: #f5f5f5;
border: 1px solid #444;
transition: background-color 0.3s ease;
}
.list-group-item:hover {
background-color: #383850;
}
/* Button styling */
.btn-primary {
background-color: #4c4cff;
border-color: #4c4cff;
}
.btn-primary:hover {
background-color: #3838e8;
border-color: #3838e8;
}
/* Align buttons side-by-side */
.button-container {
display: flex;
gap: 0.5rem; /* Adds space between buttons */
}
.btn-primary {
flex: 1; /* Ensures buttons have the same width */
}
/* Optional: Adjust margin and padding for better spacing */
.list-group-item {
display: flex;
justify-content: space-between;
align-items: center;
}
</style>
<div class="container">
<div class="card shadow">
<div class="card-header">
<h3>Available Vector Databases</h3>
</div>
<div class="card-body">
<h4 class="text-center mb-4">Select a Vector Database</h4>
<ul class="list-group">
{% for db in vector_dbs %}
<li class="list-group-item">
<span>{{ db }}</span>
<div class="button-container">
<!--form method="post" action="{{ url_for('update_db', db_name=db) }}" class="mb-0">
<button type="submit" class="btn btn-primary btn-sm">Update</button>
</form-->
<form method="post" action="{{ url_for('select_db', db_name=db) }}" class="mb-0">
<button type="submit" class="btn btn-primary btn-sm">Select</button>
</form>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
{% endblock %}