Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Django Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Tobias Mieves
Django Core
Merge requests
!16
Develop
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Develop
develop
into
main
Overview
2
Commits
5
Pipelines
1
Changes
1
Merged
Tobias Mieves
requested to merge
develop
into
main
1 year ago
Overview
2
Commits
5
Pipelines
1
Changes
1
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
499832d6
5 commits,
1 year ago
1 file
+
6
−
7
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
templates/base.html
+
6
−
7
View file @ 499832d6
Edit in single-file editor
Open in Web IDE
Show full file
@@ -10,7 +10,7 @@
@@ -10,7 +10,7 @@
{% block head %}{% endblock %}
{% block head %}{% endblock %}
</head>
</head>
<body>
<body>
<div
class=
"navbar
mb-2
shadow-lg bg-neutral text-neutral-content rounded-box"
>
<div
class=
"navbar shadow-lg bg-neutral text-neutral-content rounded-box
max-h-24 mb-3.5
"
>
<div
class=
"flex-none lg:hidden"
>
<div
class=
"flex-none lg:hidden"
>
<label
for=
"my-drawer-3"
class=
"btn btn-square btn-ghost"
>
<label
for=
"my-drawer-3"
class=
"btn btn-square btn-ghost"
>
<svg
xmlns=
"http://www.w3.org/2000/svg"
fill=
"none"
viewBox=
"0 0 24 24"
<svg
xmlns=
"http://www.w3.org/2000/svg"
fill=
"none"
viewBox=
"0 0 24 24"
@@ -21,7 +21,7 @@
@@ -21,7 +21,7 @@
</label>
</label>
</div>
</div>
<div
class=
"flex-1 px-2 mx-2 navbar-start"
>
<div
class=
"flex-1 px-2 mx-2 navbar-start"
>
<a
href=
"{% url 'home_view' %}"
class=
"text-lg font-bold"
>
<a
href=
"{% url 'home_view' %}"
class=
"text-lg font-bold
align-middle
"
>
{% block home_logo %}DaisyUI{% endblock %}
{% block home_logo %}DaisyUI{% endblock %}
</a>
</a>
</div>
</div>
@@ -53,23 +53,22 @@
@@ -53,23 +53,22 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"drawer drawer-mobile"
>
<div
class=
"drawer drawer-mobile
pt-20"
style=
"margin-top:-5rem;
"
>
<input
id=
"my-drawer-3"
type=
"checkbox"
class=
"drawer-toggle"
/>
<input
id=
"my-drawer-3"
type=
"checkbox"
class=
"drawer-toggle"
/>
<div
class=
"drawer-content flex flex-col"
>
<div
class=
"drawer-content flex flex-col"
>
<!-- Navbar -->
<!-- Navbar -->
<!-- Page content here -->
<!-- Page content here -->
<main>
<main>
<div
class=
"p-4 lg:
pl
-0"
>
<div
class=
"p-4
mb-20
lg:
mb
-0"
>
{% block content %}
{% block content %}
{% endblock %}
{% endblock %}
</div>
</div>
</main>
</main>
</div>
</div>
<div
class=
"drawer-side
sm:
shadow-lg
sm:
rounded-box
m
-4"
>
<div
class=
"drawer-side shadow-lg rounded-box
lg:ml
-4"
>
<label
for=
"my-drawer-3"
class=
"drawer-overlay"
></label>
<label
for=
"my-drawer-3"
class=
"drawer-overlay"
></label>
<ul
class=
"menu p-4 w-fit m-w-xs bg-base-100"
>
<ul
class=
"menu p-4 w-fit m-w-xs mb-20 lg:mb-0 bg-base-100"
>
<!-- Sidebar content here -->
{% block sidebar_list %}
{% block sidebar_list %}
<li><a>
Sidebar Item 1
</a></li>
<li><a>
Sidebar Item 1
</a></li>
<li><a>
Sidebar Item 2
</a></li>
<li><a>
Sidebar Item 2
</a></li>
Loading