feature/90-implement-public-website-for-device #17

Merged
cayop merged 32 commits from feature/90-implement-public-website-for-device into main 2024-10-30 15:02:18 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 2636e80ece - Show all commits

View File

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<title>{{ title }} - {{ object.type }}</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<style>
@ -23,7 +23,7 @@
flex-grow: 1;
}
.section-title {
color: #7a9f4f; /* Darker green for h2 */
color: #7a9f4f;
border-bottom: 2px solid #9cc666;
padding-bottom: 10px;
margin-bottom: 20px;
@ -88,7 +88,7 @@
</head>
<body>
<div class="container custom-container">
<h1 class="text-center mb-4" style="color: #545f71;">{{ title }}</h1>
<h1 class="text-center mb-4" style="color: #545f71;">{{ title }} - {{ object.type }}</h1>
<div class="row">
<div class="col-lg-6">

View File

@ -103,7 +103,7 @@ class DetailsView(DashboardView, TemplateView):
class DeviceWebView(DashboardView, TemplateView):
template_name = "device_web.html"
title = _("Device Web")
title = _("Device Website")
breadcrumb = "Device / Web"
model = Annotation