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
Compare revisions
v2.0.3 to v2.1.0
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
tobiasff3200/django-core
Select target project
No results found
v2.1.0
Select Git revision
Loading items
Swap
Target
tobiasff3200/django-core
Select target project
tobiasff3200/django-core
1 result
v2.0.3
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
feat: Add word-break and hyphens-auto to better deal with text
· 65908df2
Tobias Mieves
authored
1 year ago
65908df2
Merge branch 'develop' into 'main'
· 4842ce8d
Tobias Mieves
authored
1 year ago
Add word-break and hyphens-auto to better deal with text See merge request
!26
4842ce8d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
templates/base-clear.html
+7
-7
7 additions, 7 deletions
templates/base-clear.html
templates/base.html
+5
-6
5 additions, 6 deletions
templates/base.html
with
12 additions
and
13 deletions
templates/base-clear.html
View file @
4842ce8d
{% load static %}
<!DOCTYPE html>
<html>
<html
lang=
"de"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
{% block title %}Core{% endblock %}
</title>
<link
href=
"{% static 'core/css/output.css' %}"
rel=
"stylesheet"
type=
"text/css"
>
{#
<meta
http-equiv=
"refresh"
content=
"10"
>
#
}
{% block head %}{% endblock %
}
</head>
<body>
<body
class=
"break-words hyphens-auto"
>
{% block content %}
{% endblock %}
</body>
...
...
This diff is collapsed.
Click to expand it.
templates/base.html
View file @
4842ce8d
{% load static %}
<!DOCTYPE html>
<html>
<html
lang=
"de"
>
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
{% block title %}Core{% endblock %}
</title>
<link
href=
"{% static 'core/css/output.css' %}"
rel=
"stylesheet"
type=
"text/css"
>
{#
<meta
http-equiv=
"refresh"
content=
"10"
>
#}
{% block head %}{% endblock %}
</head>
<body>
<div
class=
"drawer"
>
<div
class=
"drawer
break-words hyphens-auto
"
>
<input
id=
"drawer"
type=
"checkbox"
class=
"drawer-toggle"
/>
<div
class=
"drawer-content flex flex-col"
>
<!-- Navbar -->
...
...
@@ -69,7 +68,7 @@
</div>
</div>
<!-- Page content here -->
<main
class=
"p-4 w-full"
>
<main
class=
"p-4 w-full
break-words hyphens-auto
"
>
{% block content %}
Content
{% endblock %}
...
...
This diff is collapsed.
Click to expand it.