20 lines
401 B
HTML
20 lines
401 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
{% block content %}
|
||
|
|
|
||
|
|
<div class="container-fluid mt-4">
|
||
|
|
|
||
|
|
<div class="card shadow">
|
||
|
|
|
||
|
|
<div class="card-header bg-primary text-white d-flex justify-content-between align-items-center">
|
||
|
|
|
||
|
|
<h4 class="mb-0">
|
||
|
|
<i class="bi bi-currency-rupee"></i>
|
||
|
|
Client Rate Master
|
||
|
|
</h4>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
{% endblock %}
|