[UPDT]index.html - title and favicons
Fix title and icon
This commit is contained in:
@@ -10,19 +10,20 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Hrms</title>
|
||||
<title>Horilla</title>
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'favicons/apple-touch-icon.png' %}">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'favicons/favicon-32x32.png' %}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'favicons/favicon-16x16.png' %}">
|
||||
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<link rel="stylesheet" href="{% static 'build/css/style.min.css' %}" />
|
||||
{% comment %} <link rel="stylesheet" href="{% static '/bootstrap/bootstrap.min.css' %}" > {% endcomment %}
|
||||
<script src="{% static '/jquery/ajax.js' %}" integrity="sha256-3zlB5s2uwoUzrXK3BT7AX3FyvojsraNFxCc2vC/7pNI=" crossorigin="anonymous"></script>
|
||||
<script src="{% static '/jquery/ajax.js' %}" ></script>
|
||||
<script src="{% static '/jquery/jquery.min.js' %}"></script>
|
||||
<link rel="stylesheet" href="{% static '/jquery/jqueryui.css' %}">
|
||||
<script src="{% static '/jquery/jqueryui.js' %}"></script>
|
||||
<script src="{% static 'src/common.js' %}"></script>
|
||||
<!-- Popper.JS -->
|
||||
<script src="{% static '/proper/proper.js' %}" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
|
||||
<!-- Bootstrap JS -->
|
||||
{% comment %} <script src="{% static '/bootstrap/bootstrap.min.js' %}" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script> {% endcomment %}
|
||||
<script src="{% static 'index.js' %}"></script>
|
||||
{% block styles %}
|
||||
{% endblock styles %}
|
||||
<style>
|
||||
@@ -111,7 +112,7 @@
|
||||
<a href="#" class="oh-navbar__toggle-link oh-link__unstyled" @click="sidebarOpen = !sidebarOpen">
|
||||
<img src="{% static 'images/ui/menu.svg' %}" width="24" height="24" class="oh-navbar__toggle-menu"
|
||||
loading="lazy" />
|
||||
<span class="oh-tabs__movable-title" style="color: rgb(0, 0, 14);">{{request.session.title}}</span>
|
||||
<span class="oh-tabs__movable-title" style="color: rgb(0, 0, 14);">{% trans request.session.title %}</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="oh-navbar__systray">
|
||||
@@ -119,9 +120,13 @@
|
||||
|
||||
{% if request.user.employee_get %}
|
||||
{% if request.user|is_clocked_in %}
|
||||
<button class="oh-btn oh-btn--warning-outline mr-2" hx-get="{% url 'clock-out' %}" hx-target='#attendance-activity-container' hx-swap='innerHTML'><ion-icon class="oh-navbar__clock-icon mr-2 text-warning" name="exit-outline"></ion-icon>{% trans "Check-Out" %}</button>
|
||||
<button class="oh-btn oh-btn--warning-outline mr-2" hx-get="{% url 'clock-out' %}" hx-target='#attendance-activity-container' hx-swap='innerHTML'><ion-icon class="oh-navbar__clock-icon mr-2 text-warning" name="exit-outline"></ion-icon>
|
||||
<span class="hr-check-in-out-text">{% trans "Check-Out" %}</span>
|
||||
</button>
|
||||
{% else %}
|
||||
<button class="oh-btn oh-btn--success-outline mr-2" hx-get="{% url 'clock-in' %}" hx-target='#attendance-activity-container' hx-swap='innerHTML'><ion-icon class="oh-navbar__clock-icon mr-2 text-success" name="enter-outline"></ion-icon>{% trans "Check-In" %}</button>
|
||||
<button class="oh-btn oh-btn--success-outline mr-2" hx-get="{% url 'clock-in' %}" hx-target='#attendance-activity-container' hx-swap='innerHTML'><ion-icon class="oh-navbar__clock-icon mr-2 text-success" name="enter-outline"></ion-icon>
|
||||
<span class="hr-check-in-out-text">{% trans "Check-In" %}</span>
|
||||
</button>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
@@ -147,7 +152,7 @@
|
||||
{% endfor %}
|
||||
</select>
|
||||
</form>
|
||||
</div> {% endcomment %}
|
||||
</div> {% endcomment %}
|
||||
<div class="oh-dropdown" x-data="{open: false}">
|
||||
<div class="oh-navbar__user-info" @click="open = !open" @click.outside="open = false">
|
||||
<div class="oh-navbar__user-photo">
|
||||
@@ -204,10 +209,8 @@
|
||||
}
|
||||
</script>
|
||||
<!-- this is the master js -->
|
||||
<script src="{% static 'index/index.js' %}"></script>
|
||||
<script src="{% static '/index/index.js' %}"></script>
|
||||
<script src="{% static 'build/js/htmxSelect2.js' %}" ></script>
|
||||
<script src="{% static 'ionicons/npm/dist/ionicons.js' %}"></script>
|
||||
<script src="{% static 'attendance/actions.js' %}"></script>
|
||||
<script src="{% static 'attendance/actions.js' %}"></script>
|
||||
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
||||
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
||||
|
||||
Reference in New Issue
Block a user