This commit is contained in:
despiegk 2025-04-22 06:59:24 +04:00
parent af4f09a67b
commit 310a5d956f
9 changed files with 15 additions and 15 deletions

View File

@ -1,6 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Login - Actix MVC App{% endblock %} {% block title %}Login{% endblock %}
{% block content %} {% block content %}
<div class="row justify-content-center"> <div class="row justify-content-center">

View File

@ -1,6 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Register - Actix MVC App{% endblock %} {% block title %}Register{% endblock %}
{% block content %} {% block content %}
<div class="row justify-content-center"> <div class="row justify-content-center">

View File

@ -59,8 +59,8 @@
<body> <body>
<!-- Header - Full Width --> <!-- Header - Full Width -->
<header class="header bg-dark text-white"> <header class="header bg-dark text-white">
<div class="container-fluid d-flex justify-content-between align-items-center h-100"> <div class="d-flex container-fluid justify-content-between align-items-center h-100">
<div class="d-flex align-items-center"> <div class="align-items-center">
<button class="navbar-toggler d-md-none me-2" type="button" id="sidebarToggle" aria-label="Toggle navigation"> <button class="navbar-toggler d-md-none me-2" type="button" id="sidebarToggle" aria-label="Toggle navigation">
<i class="bi bi-list text-white"></i> <i class="bi bi-list text-white"></i>
</button> </button>
@ -97,9 +97,9 @@
</div> </div>
</header> </header>
<div class="d-flex"> <div>
<!-- Sidebar --> <!-- Sidebar -->
<div class="sidebar bg-light shadow-sm border-end" id="sidebar"> <div class="sidebar bg-light shadow-sm border-end d-flex" id="sidebar">
<div class="py-2"> <div class="py-2">
<ul class="nav flex-column"> <ul class="nav flex-column">
<li class="nav-item"> <li class="nav-item">
@ -152,9 +152,9 @@
</div> </div>
<!-- Main Content --> <!-- Main Content -->
<div class="main-content"> <div class="main-content" >
<!-- Page Content --> <!-- Page Content -->
<main class="py-3 w-100"> <main class="py-3 w-100 d-block">
<div class="container-fluid"> <div class="container-fluid">
{% block content %}{% endblock %} {% block content %}{% endblock %}
</div> </div>

View File

@ -5,7 +5,7 @@
{% block content %} {% block content %}
<div class="row mb-4"> <div class="row mb-4">
<div class="col-12"> <div class="col-12">
<h1 class="display-5 mb-3">Flows Dashboard</h1> <h1 class="display-5 mb-4">Flows Dashboard</h1>
<p class="lead">Track and manage workflow processes across the organization.</p> <p class="lead">Track and manage workflow processes across the organization.</p>
</div> </div>
</div> </div>
@ -70,4 +70,4 @@
</div> </div>
</div> </div>
{% endblock %} {% endblock %}

View File

@ -1,6 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Governance Dashboard - Actix MVC App{% endblock %} {% block title %}Governance Dashboard{% endblock %}
{% block content %} {% block content %}
<div class="row mb-4"> <div class="row mb-4">

View File

@ -1,6 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Support Tickets - Actix MVC App{% endblock %} {% block title %}Support Tickets{% endblock %}
{% block content %} {% block content %}
<div class="d-flex justify-content-between align-items-center mb-4"> <div class="d-flex justify-content-between align-items-center mb-4">

View File

@ -1,6 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}My Tickets - Actix MVC App{% endblock %} {% block title %}My Tickets{% endblock %}
{% block content %} {% block content %}
<div class="d-flex justify-content-between align-items-center mb-4"> <div class="d-flex justify-content-between align-items-center mb-4">

View File

@ -1,6 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}New Support Ticket - Actix MVC App{% endblock %} {% block title %}New Support Ticket{% endblock %}
{% block content %} {% block content %}
<div class="row justify-content-center"> <div class="row justify-content-center">

View File

@ -1,6 +1,6 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Ticket #{{ ticket.id | truncate(length=8) }} - Actix MVC App{% endblock %} {% block title %}Ticket #{{ ticket.id | truncate(length=8) }}{% endblock %}
{% block content %} {% block content %}
<div class="container-fluid" up-main> <div class="container-fluid" up-main>