correct route for apps and customs
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Ekaropolus 2025-05-15 00:05:38 -06:00
parent c4e9cbf66e
commit 8bf7225ad1
114 changed files with 392 additions and 496 deletions

0
.gitmodules vendored Normal file
View File

View File

@ -2,21 +2,21 @@ from django.views.generic.base import TemplateView
from django.contrib.auth.mixins import LoginRequiredMixin
class AppsView(LoginRequiredMixin,TemplateView):
class AppsView(LoginRequiredMixin, TemplateView):
pass
# Calendar
apps_calendar_view = AppsView.as_view(template_name="apps/apps-calendar.html")
apps_calendar_view = AppsView.as_view(template_name="pxy_dashboard/apps/apps-calendar.html")
# Chat
apps_chat_view = AppsView.as_view(template_name="apps/apps-chat.html")
apps_chat_view = AppsView.as_view(template_name="pxy_dashboard/apps/apps-chat.html")
# Mail Box
apps_email_inbox_view = AppsView.as_view(template_name="apps/apps-email-inbox.html")
apps_email_read = AppsView.as_view(template_name="apps/apps-email-read.html")
apps_email_inbox_view = AppsView.as_view(template_name="pxy_dashboard/apps/apps-email-inbox.html")
apps_email_read = AppsView.as_view(template_name="pxy_dashboard/apps/apps-email-read.html")
# Tasks
apps_tasks = AppsView.as_view(template_name="apps/apps-tasks.html")
apps_tasks_details = AppsView.as_view(template_name="apps/apps-tasks-details.html")
apps_tasks = AppsView.as_view(template_name="pxy_dashboard/apps/apps-tasks.html")
apps_tasks_details = AppsView.as_view(template_name="pxy_dashboard/apps/apps-tasks-details.html")
# Kanban
apps_kanban_board = AppsView.as_view(template_name="apps/apps-kanban.html")
apps_kanban_board = AppsView.as_view(template_name="pxy_dashboard/apps/apps-kanban.html")
# File Manager
apps_file_manager = AppsView.as_view(template_name="apps/apps-file-manager.html")
apps_file_manager = AppsView.as_view(template_name="pxy_dashboard/apps/apps-file-manager.html")

View File

@ -1,193 +1,89 @@
from django.views.generic.base import TemplateView
from django.contrib.auth.mixins import LoginRequiredMixin
class ComponentView(LoginRequiredMixin,TemplateView):
class ComponentView(LoginRequiredMixin, TemplateView):
pass
# Base UI
accordions_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/accordions.html")
alerts_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/alerts.html")
avatars_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/avatars.html")
badges_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/badges.html")
breadcrumb_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/breadcrumb.html")
buttons_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/buttons.html")
cards_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/cards.html")
carousel_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/carousel.html")
collapse_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/collapse.html")
dropdowns_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/dropdowns.html")
embed_video_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/embed-video.html")
grid_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/grid.html")
links_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/links.html")
list_group_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/list-group.html")
modals_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/modals.html")
notifications_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/notifications.html")
offcanvas_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/offcanvas.html")
placeholders_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/placeholders.html")
pagination_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/pagination.html")
popovers_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/popovers.html")
progress_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/progress.html")
spinners_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/spinners.html")
tabs_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/tabs.html")
tooltips_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/tooltips.html")
typography_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/typography.html")
utilities_view = ComponentView.as_view(template_name="pxy_dashboard/components/base-ui/utilities.html")
# Base Ui
accordions_view = ComponentView.as_view(
template_name="components/base-ui/accordions.html"
)
alerts_view = ComponentView.as_view(template_name="components/base-ui/alerts.html")
avatars_view = ComponentView.as_view(template_name="components/base-ui/avatars.html")
badges_view = ComponentView.as_view(template_name="components/base-ui/badges.html")
breadcrumb_view = ComponentView.as_view(
template_name="components/base-ui/breadcrumb.html"
)
buttons_view = ComponentView.as_view(template_name="components/base-ui/buttons.html")
cards_view = ComponentView.as_view(template_name="components/base-ui/cards.html")
carousel_view = ComponentView.as_view(template_name="components/base-ui/carousel.html")
collapse_view = ComponentView.as_view(template_name="components/base-ui/collapse.html")
dropdowns_view = ComponentView.as_view(
template_name="components/base-ui/dropdowns.html"
)
embed_video_view = ComponentView.as_view(
template_name="components/base-ui/embed-video.html"
)
grid_view = ComponentView.as_view(template_name="components/base-ui/grid.html")
links_view = ComponentView.as_view(template_name="components/base-ui/links.html")
list_group_view = ComponentView.as_view(
template_name="components/base-ui/list-group.html"
)
modals_view = ComponentView.as_view(template_name="components/base-ui/modals.html")
notifications_view = ComponentView.as_view(
template_name="components/base-ui/notifications.html"
)
offcanvas_view = ComponentView.as_view(
template_name="components/base-ui/offcanvas.html"
)
placeholders_view = ComponentView.as_view(
template_name="components/base-ui/placeholders.html"
)
pagination_view = ComponentView.as_view(
template_name="components/base-ui/pagination.html"
)
popovers_view = ComponentView.as_view(template_name="components/base-ui/popovers.html")
progress_view = ComponentView.as_view(template_name="components/base-ui/progress.html")
spinners_view = ComponentView.as_view(template_name="components/base-ui/spinners.html")
tabs_view = ComponentView.as_view(template_name="components/base-ui/tabs.html")
tooltips_view = ComponentView.as_view(template_name="components/base-ui/tooltips.html")
typography_view = ComponentView.as_view(
template_name="components/base-ui/typography.html"
)
utilities_view = ComponentView.as_view(
template_name="components/base-ui/utilities.html"
)
# Extended Ui
extended_dragula_view = ComponentView.as_view(
template_name="components/extended-ui/extended-dragula.html"
)
extended_range_slider_view = ComponentView.as_view(
template_name="components/extended-ui/extended-range-slider.html"
)
extended_ratings_view = ComponentView.as_view(
template_name="components/extended-ui/extended-ratings.html"
)
extended_scrollbar_view = ComponentView.as_view(
template_name="components/extended-ui/extended-scrollbar.html"
)
extended_scrollspy_view = ComponentView.as_view(
template_name="components/extended-ui/extended-scrollspy.html"
)
# Extended UI
extended_dragula_view = ComponentView.as_view(template_name="pxy_dashboard/components/extended-ui/extended-dragula.html")
extended_range_slider_view = ComponentView.as_view(template_name="pxy_dashboard/components/extended-ui/extended-range-slider.html")
extended_ratings_view = ComponentView.as_view(template_name="pxy_dashboard/components/extended-ui/extended-ratings.html")
extended_scrollbar_view = ComponentView.as_view(template_name="pxy_dashboard/components/extended-ui/extended-scrollbar.html")
extended_scrollspy_view = ComponentView.as_view(template_name="pxy_dashboard/components/extended-ui/extended-scrollspy.html")
# Widgets
widgets_view = ComponentView.as_view(template_name="components/widgets/widgets.html")
widgets_view = ComponentView.as_view(template_name="pxy_dashboard/components/widgets/widgets.html")
# Icons
icons_remixicons_view = ComponentView.as_view(
template_name="components/icons/icons-remixicons.html"
)
icons_bootstrap_view = ComponentView.as_view(
template_name="components/icons/icons-bootstrap.html"
)
icons_material_view = ComponentView.as_view(
template_name="components/icons/icons-material-symbol.html"
)
icons_remixicons_view = ComponentView.as_view(template_name="pxy_dashboard/components/icons/icons-remixicons.html")
icons_bootstrap_view = ComponentView.as_view(template_name="pxy_dashboard/components/icons/icons-bootstrap.html")
icons_material_view = ComponentView.as_view(template_name="pxy_dashboard/components/icons/icons-material-symbol.html")
# Charts
# Apex
apex_area_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-area.html"
)
apex_bar_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-bar.html"
)
apex_bubble_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-bubble.html"
)
apex_candlestick_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-candlestick.html"
)
apex_column_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-column.html"
)
apex_heatmap_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-heatmap.html"
)
apex_line_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-line.html"
)
apex_mixed_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-mixed.html"
)
apex_timeline_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-timeline.html"
)
apex_boxplot_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-boxplot.html"
)
apex_treemap_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-treemap.html"
)
apex_pie_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-pie.html"
)
apex_radar_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-radar.html"
)
apex_radialbar_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-radialbar.html"
)
apex_scatter_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-scatter.html"
)
apex_polar_area_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-polar-area.html"
)
apex_sparklines_view = ComponentView.as_view(
template_name="components/charts/apex-charts/apex-sparklines.html"
)
# ChartJs
chartjs_area_view = ComponentView.as_view(
template_name="components/charts/chartjs/chartjs-area.html"
)
chartjs_bar_view = ComponentView.as_view(
template_name="components/charts/chartjs/chartjs-bar.html"
)
chartjs_line_view = ComponentView.as_view(
template_name="components/charts/chartjs/chartjs-line.html"
)
chartjs_other_view = ComponentView.as_view(
template_name="components/charts/chartjs/chartjs-other.html"
)
# Charts - Apex
apex_area_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-area.html")
apex_bar_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-bar.html")
apex_bubble_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-bubble.html")
apex_candlestick_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-candlestick.html")
apex_column_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-column.html")
apex_heatmap_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-heatmap.html")
apex_line_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-line.html")
apex_mixed_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-mixed.html")
apex_timeline_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-timeline.html")
apex_boxplot_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-boxplot.html")
apex_treemap_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-treemap.html")
apex_pie_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-pie.html")
apex_radar_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-radar.html")
apex_radialbar_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-radialbar.html")
apex_scatter_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-scatter.html")
apex_polar_area_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-polar-area.html")
apex_sparklines_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/apex-charts/apex-sparklines.html")
# Charts - ChartJS
chartjs_area_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/chartjs/chartjs-area.html")
chartjs_bar_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/chartjs/chartjs-bar.html")
chartjs_line_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/chartjs/chartjs-line.html")
chartjs_other_view = ComponentView.as_view(template_name="pxy_dashboard/components/charts/chartjs/chartjs-other.html")
# Forms
form_elements_view = ComponentView.as_view(
template_name="components/forms/form-elements.html"
)
form_advanced_view = ComponentView.as_view(
template_name="components/forms/form-advanced.html"
)
form_validation_view = ComponentView.as_view(
template_name="components/forms/form-validation.html"
)
form_wizard_view = ComponentView.as_view(
template_name="components/forms/form-wizard.html"
)
form_fileuploads_view = ComponentView.as_view(
template_name="components/forms/form-fileuploads.html"
)
form_editors_view = ComponentView.as_view(
template_name="components/forms/form-editors.html"
)
form_elements_view = ComponentView.as_view(template_name="pxy_dashboard/components/forms/form-elements.html")
form_advanced_view = ComponentView.as_view(template_name="pxy_dashboard/components/forms/form-advanced.html")
form_validation_view = ComponentView.as_view(template_name="pxy_dashboard/components/forms/form-validation.html")
form_wizard_view = ComponentView.as_view(template_name="pxy_dashboard/components/forms/form-wizard.html")
form_fileuploads_view = ComponentView.as_view(template_name="pxy_dashboard/components/forms/form-fileuploads.html")
form_editors_view = ComponentView.as_view(template_name="pxy_dashboard/components/forms/form-editors.html")
# Tables
tables_basic_view = ComponentView.as_view(
template_name="components/tables/tables-basic.html"
)
tables_datatable_view = ComponentView.as_view(
template_name="components/tables/tables-datatable.html"
)
tables_basic_view = ComponentView.as_view(template_name="pxy_dashboard/components/tables/tables-basic.html")
tables_datatable_view = ComponentView.as_view(template_name="pxy_dashboard/components/tables/tables-datatable.html")
# Maps
google_map_view = ComponentView.as_view(
template_name="components/maps/maps-google.html"
)
vector_map_view = ComponentView.as_view(
template_name="components/maps/maps-vector.html"
)
google_map_view = ComponentView.as_view(template_name="pxy_dashboard/components/maps/maps-google.html")
vector_map_view = ComponentView.as_view(template_name="pxy_dashboard/components/maps/maps-vector.html")

View File

@ -1,34 +1,34 @@
from django.views.generic.base import TemplateView
from django.contrib.auth.mixins import LoginRequiredMixin
class CustomView(LoginRequiredMixin,TemplateView):
class CustomView(LoginRequiredMixin, TemplateView):
pass
#Pages
pages_profile_view = CustomView.as_view(template_name="custom/pages/pages-profile.html")
pages_invoice_view = CustomView.as_view(template_name="custom/pages/pages-invoice.html")
pages_faq_view = CustomView.as_view(template_name="custom/pages/pages-faq.html")
pages_pricing_view = CustomView.as_view(template_name="custom/pages/pages-pricing.html")
pages_maintenance_view = CustomView.as_view(template_name="custom/pages/pages-maintenance.html")
pages_starter_view = CustomView.as_view(template_name="custom/pages/pages-starter.html")
pages_preloader_view = CustomView.as_view(template_name="custom/pages/pages-preloader.html")
pages_timeline_view = CustomView.as_view(template_name="custom/pages/pages-timeline.html")
# Pages
pages_profile_view = CustomView.as_view(template_name="pxy_dashboard/custom/pages/pages-profile.html")
pages_invoice_view = CustomView.as_view(template_name="pxy_dashboard/custom/pages/pages-invoice.html")
pages_faq_view = CustomView.as_view(template_name="pxy_dashboard/custom/pages/pages-faq.html")
pages_pricing_view = CustomView.as_view(template_name="pxy_dashboard/custom/pages/pages-pricing.html")
pages_maintenance_view = CustomView.as_view(template_name="pxy_dashboard/custom/pages/pages-maintenance.html")
pages_starter_view = CustomView.as_view(template_name="pxy_dashboard/custom/pages/pages-starter.html")
pages_preloader_view = CustomView.as_view(template_name="pxy_dashboard/custom/pages/pages-preloader.html")
pages_timeline_view = CustomView.as_view(template_name="pxy_dashboard/custom/pages/pages-timeline.html")
# Auth Pages
auth_login_view = CustomView.as_view(template_name="custom/auth-pages/auth-login.html")
auth_login2_view = CustomView.as_view(template_name="custom/auth-pages/auth-login-2.html")
auth_register_view = CustomView.as_view(template_name="custom/auth-pages/auth-register.html")
auth_register2_view = CustomView.as_view(template_name="custom/auth-pages/auth-register-2.html")
auth_logout_view = CustomView.as_view(template_name="custom/auth-pages/auth-logout.html")
auth_logout2_view = CustomView.as_view(template_name="custom/auth-pages/auth-logout-2.html")
auth_recoverpw_view = CustomView.as_view(template_name="custom/auth-pages/auth-recoverpw.html")
auth_recoverpw2_view = CustomView.as_view(template_name="custom/auth-pages/auth-recoverpw-2.html")
auth_lock_screen_view = CustomView.as_view(template_name="custom/auth-pages/auth-lock-screen.html")
auth_lock_screen2_view = CustomView.as_view(template_name="custom/auth-pages/auth-lock-screen-2.html")
auth_confirm_mail_view = CustomView.as_view(template_name="custom/auth-pages/auth-confirm-mail.html")
auth_confirm_mail2_view = CustomView.as_view(template_name="custom/auth-pages/auth-confirm-mail-2.html")
auth_login_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-login.html")
auth_login2_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-login-2.html")
auth_register_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-register.html")
auth_register2_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-register-2.html")
auth_logout_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-logout.html")
auth_logout2_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-logout-2.html")
auth_recoverpw_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-recoverpw.html")
auth_recoverpw2_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-recoverpw-2.html")
auth_lock_screen_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-lock-screen.html")
auth_lock_screen2_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-lock-screen-2.html")
auth_confirm_mail_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-confirm-mail.html")
auth_confirm_mail2_view = CustomView.as_view(template_name="pxy_dashboard/custom/auth-pages/auth-confirm-mail-2.html")
# Error Pages
error_404_view = CustomView.as_view(template_name="custom/error-pages/error-404.html")
error_404_alt_view = CustomView.as_view(template_name="custom/error-pages/error-404-alt.html")
error_500_view = CustomView.as_view(template_name="custom/error-pages/error-500.html")
error_404_view = CustomView.as_view(template_name="pxy_dashboard/custom/error-pages/error-404.html")
error_404_alt_view = CustomView.as_view(template_name="pxy_dashboard/custom/error-pages/error-404-alt.html")
error_500_view = CustomView.as_view(template_name="pxy_dashboard/custom/error-pages/error-500.html")

View File

@ -1,5 +1,5 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
<meta charset="utf-8" />
@ -17,7 +17,7 @@
{% block css %}
{% block extra_css %} {% endblock extra_css %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
{% endblock css %}
</head>
@ -29,7 +29,7 @@
<!-- JAVASCRIPT -->
{% block javascript %}
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %} {% endblock extra_js %}

View File

@ -8,7 +8,7 @@
{% endblock %}
{% block page_content %}
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">

View File

@ -8,7 +8,7 @@
{% endblock %}
{% block page_content %}
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">

View File

@ -8,7 +8,7 @@
{% endblock %}
{% block page_content %}
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5">
<div class="container">
<div class="row justify-content-center">

View File

@ -8,7 +8,7 @@
{% endblock %}
{% block page_content %}
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5">
<div class="container">
<div class="row justify-content-center">

View File

@ -8,7 +8,7 @@ class="loading authentication-bg"
{% endblock %}
{% block page_content %}
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5">
<div class="container">
<div class="row justify-content-center">

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Calendar{% endblock title %}
@ -12,7 +12,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Apps" title="Calendar" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Apps" title="Calendar" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Chat{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Apps" title=" Chat" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Apps" title=" Chat" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Inbox{% endblock title %}
@ -14,7 +14,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Email" title="Inbox" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Email" title="Inbox" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Email Read{% endblock title %}
@ -13,7 +13,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Email" title="Email Read" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Email" title="Email Read" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}File Manager{% endblock title %}
@ -6,7 +6,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Apps" title="File Manager" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Apps" title="File Manager" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Kanban Board{% endblock title %}
@ -701,7 +701,7 @@
</div> <!-- content -->
@@include('./partials/footer.html')
@@include('./pxy_dashboard/partials/footer.html')
</div>
@ -714,7 +714,7 @@
@@include('./partials/right-sidebar.html')
@@include('./pxy_dashboard/partials/right-sidebar.html')
<!-- Add new task modal -->
<div class="modal fade task-modal-content" id="add-new-task-modal" tabindex="-1" role="dialog" aria-labelledby="NewTaskModalLabel" aria-hidden="true">

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Task Detail{% endblock title %}
@ -6,7 +6,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Task" title="Task Detail" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Task" title="Task Detail" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Tasks{% endblock title %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Accordions{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Accordions" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Accordions" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Alerts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Alerts" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Alerts" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Avatars{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Avatars" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Avatars" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Badges{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Badges" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Badges" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Breadcrumb{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Breadcrumb" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Breadcrumb" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Buttons{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Buttons" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Buttons" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Cards{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Cards" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Cards" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}/
{% extends "pxy_dashboard/partials/base.html" %}/
{% load static %}
{% block title %}Carousel{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Carousel" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Carousel" %}
{% endblock pagetitle %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Collapse{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Collapse" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Collapse" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Dropdowns{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Dropdowns" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Dropdowns" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Embed Video{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Embed Video" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Embed Video" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Grid System{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Grid System" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Grid System" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Links{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Links" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Links" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}List Group{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="List Group" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="List Group" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Modals{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Modals" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Modals" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Notifications{% endblock title %}
@ -11,7 +11,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Notifications" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Notifications" %}
{% endblock pagetitle %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Offcanvas{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Offcanvas" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Offcanvas" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Pagination{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Pagination" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Pagination" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Placeholders{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Placeholders" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Placeholders" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Popovers{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Popovers" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Popovers" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Progress{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Progress" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Progress" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Spinners{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Spinners" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Spinners" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Tabs{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Tabs" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Tabs" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Tooltips{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Tooltips" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Tooltips" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Typography{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Typography" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Typography" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Utilities{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Base UI" title="Utilitiess" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Base UI" title="Utilitiess" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Area Chart{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Apex" title="Area Charts" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Apex" title="Area Charts" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Bar Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Bar Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Bar Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Boxplot Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Boxplot Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Boxplot Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Bubble Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Bubble Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Bubble Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Candlestick Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Candlestick Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Candlestick Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Column Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Column Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Column Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Heatmap Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Heatmap Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Heatmap Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Line Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Line Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Line Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Mixed Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Mixed Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Mixed Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Pie Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Pie Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Pie Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Polar Area Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Polar Area Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Polar Area Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Radar Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Radar Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Radar Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex RadialBar Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="RadialBar Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="RadialBar Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Scatter Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Scatter Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Scatter Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Sparklines Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Sparklines Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Sparklines Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Timeline Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Timeline Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Timeline Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Apex Treemap Charts{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Treemap Charts" title="Apex" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Treemap Charts" title="Apex" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,11 +1,11 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Chartjs{% endblock title %}
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Chartjs" title="Charts" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Chartjs" title="Charts" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Chartjs{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Chartjs" title="Charts" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Chartjs" title="Charts" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Chartjs{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Chartjs" title="Charts" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Chartjs" title="Charts" %}
{% endblock pagetitle %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Chartjs{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Chartjs" title="Charts" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Chartjs" title="Charts" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Dragula{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Extended UI" title="Dragula" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Extended UI" title="Dragula" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Range Slider{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Extended UI" title="Range Slider" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Extended UI" title="Range Slider" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Ratings{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Extended UI" title="Ratings" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Extended UI" title="Ratings" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Scrollbar{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Extended UI" title="Scrollbar" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Extended UI" title="Scrollbar" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Scrollspy{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Extended UI" title="Scrollspy" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Extended UI" title="Scrollspy" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Form Advanced{% endblock title %}
@ -27,7 +27,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Forms" title="Form Advanced" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Forms" title="Form Advanced" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Editors{% endblock title %}
@ -14,7 +14,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Forms" title="Editors" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Forms" title="Editors" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,11 +1,11 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Form Elements{% endblock title %}
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Forms" title="Form Elements" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Forms" title="Form Elements" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,11 +1,11 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}File Uploads{% endblock title %}
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Forms" title="File Uploads" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Forms" title="File Uploads" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,11 +1,11 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Form Validation{% endblock title %}
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Forms" title="Form Validation" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Forms" title="Form Validation" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,11 +1,11 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Form Wizard{% endblock title %}
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Forms" title="Form Wizard" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Forms" title="Form Wizard" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Bootstrap Icons{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Icons" title="Bootstrap Icons" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Icons" title="Bootstrap Icons" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Material Symbols{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Icons" title="Material Symbols" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Icons" title="Material Symbols" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Remix Icons{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Icons" title="Remix Icons" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Icons" title="Remix Icons" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,11 +1,11 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Google Maps{% endblock title %}
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Maps" title="Google Maps" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Maps" title="Google Maps" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Vector Maps{% endblock title %}
@ -12,7 +12,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Maps" title="Vector Maps" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Maps" title="Vector Maps" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,11 +1,11 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Basic Tables{% endblock title %}
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Tables" title="Basic Tables" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Tables" title="Basic Tables" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Datatables{% endblock title %}
@ -17,7 +17,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Tables" title="Data Tables" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Tables" title="Data Tables" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,4 +1,4 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Widgets{% endblock title %}
@ -8,7 +8,7 @@
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Extras" title="Widgets" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Extras" title="Widgets" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,11 +1,11 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Confirm Email" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg pb-0">
@ -98,7 +98,7 @@
</div>
<!-- end auth-fluid-->
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,16 +1,16 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Confirm Email" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Confirm Email" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
@ -66,7 +66,7 @@
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
</span>
</footer>
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,11 +1,11 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Lock Screen" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Lock Screen" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg pb-o">
@ -111,7 +111,7 @@
</div>
<!-- end auth-fluid-->
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,16 +1,16 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Lock Screen" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Lock Screen" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
@ -77,7 +77,7 @@
<script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com
</span>
</footer>
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,11 +1,11 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Log In" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Log In" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg pb-0">
@ -132,7 +132,7 @@
</div>
<!-- end auth-fluid-->
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,16 +1,16 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Log In" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Log In" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg position-relative">
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
@ -98,7 +98,7 @@
</span>
</footer>
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,11 +1,11 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Logout" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Logout" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg pb-0">
@ -105,7 +105,7 @@
</div>
<!-- end auth-fluid-->
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,16 +1,16 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Logout" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Logout" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
@ -72,7 +72,7 @@
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
</footer>
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,11 +1,11 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Recover Password" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Recover Password" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg pb-0">
@ -96,7 +96,7 @@
</div>
<!-- end auth-fluid-->
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,16 +1,16 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Recover Password" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Recover Password" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
@ -72,7 +72,7 @@
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
</footer>
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,11 +1,11 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Register" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Register" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg pb-0">
@ -136,7 +136,7 @@
</div>
<!-- end auth-fluid-->
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,16 +1,16 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Register" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Register" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
@ -92,7 +92,7 @@
<footer class="footer footer-alt">
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
</footer>
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,11 +1,11 @@
{% extends "partials/base.html" %}
{% extends "pxy_dashboard/partials/base.html" %}
{% load static %}
{% block title %}Error 404{% endblock title %}
{% block pagetitle %}
{% include "partials/page-title.html" with pagetitle="Pages" title="404 Error" %}
{% include "pxy_dashboard/partials/page-title.html" with pagetitle="Pages" title="404 Error" %}
{% endblock pagetitle %}
{% block content %}

View File

@ -1,16 +1,16 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Error 404" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Error 404" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
@ -54,7 +54,7 @@
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Attex - Coderthemes.com</span>
</footer>
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -1,16 +1,16 @@
{% load static %}
{% include "partials/main.html" %}
{% include "pxy_dashboard/partials/main.html" %}
<head>
{% include "partials/title-meta.html" with title="Error 500" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Error 500" %}
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body class="authentication-bg">
{% include "partials/background.html" %}
{% include "pxy_dashboard/partials/background.html" %}
<div class="account-pages pt-2 pt-sm-5 pb-4 pb-sm-5 position-relative">
<div class="container">
@ -57,7 +57,7 @@
<span class="text-white-50"><script>document.write(new Date().getFullYear())</script> © Jidox - Coderthemes.com</span>
</footer>
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- App js -->

View File

@ -4,22 +4,22 @@
<html lang="en" data-sidenav-size="compact">
<head>
{% include "partials/title-meta.html" with title="Layout Compact" %}
{% include "pxy_dashboard/partials/title-meta.html" with title="Layout Compact" %}
<!-- Plugin css -->
<link rel="stylesheet" href="{% static 'dashboard/vendor/daterangepicker/daterangepicker.css' %}">
<link rel="stylesheet" href="{% static 'dashboard/vendor/admin-resources/jquery.vectormap/jquery-jvectormap-1.2.2.css' %}">
{% include "partials/head-css.html" %}
{% include "pxy_dashboard/partials/head-css.html" %}
</head>
<body>
<!-- Begin page -->
<div class="wrapper">
{% include "partials/topbar.html" %}
{% include "pxy_dashboard/partials/topbar.html" %}
{% include "partials/left-sidebar.html" %}
{% include "pxy_dashboard/partials/left-sidebar.html" %}
<!-- ============================================================== -->
<!-- Start Page Content here -->
@ -636,7 +636,7 @@
</div>
<!-- content -->
{% include "partials/footer.html" %}
{% include "pxy_dashboard/partials/footer.html" %}
</div>
@ -647,9 +647,9 @@
</div>
<!-- END wrapper -->
{% include "partials/right-sidebar.html" %}
{% include "pxy_dashboard/partials/right-sidebar.html" %}
{% include "partials/footer-script.html" %}
{% include "pxy_dashboard/partials/footer-script.html" %}
{% block extra_js %}
<!-- Daterangepicker js -->
<script src="{% static 'dashboard/vendor/daterangepicker/moment.min.js' %}"></script>

Some files were not shown because too many files have changed in this diff Show More