yeni
This commit is contained in:
@ -3,6 +3,24 @@
|
||||
|
||||
{% block content %}
|
||||
<style>
|
||||
/* Alt menü stili */
|
||||
.nav-pills .nav-link {
|
||||
color: #e0e0e0;
|
||||
border-radius: 5px;
|
||||
padding: 0.5rem 1rem;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.nav-pills .nav-link:hover {
|
||||
background-color: rgba(79, 195, 247, 0.1);
|
||||
}
|
||||
|
||||
.nav-pills .nav-link.active {
|
||||
background-color: #4fc3f7;
|
||||
color: #212529;
|
||||
}
|
||||
|
||||
/* Müşteri kartları */
|
||||
.customer-card {
|
||||
background: #23272b;
|
||||
border: 1px solid #333;
|
||||
@ -31,6 +49,22 @@
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- Alt Menü -->
|
||||
<div class="mb-4 border-bottom pb-2">
|
||||
<ul class="nav nav-pills">
|
||||
<li class="nav-item">
|
||||
<a href="{% url 'musteriler' %}" class="nav-link active">
|
||||
<i class="bi bi-person-lines-fill"></i> Müşteri Listesi
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="{% url 'faturalar' %}" class="nav-link text-light">
|
||||
<i class="bi bi-receipt"></i> Faturalar
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="d-flex justify-content-between align-items-center mb-4">
|
||||
<div>
|
||||
<h3>Müşteri Yönetimi
|
||||
|
||||
Reference in New Issue
Block a user