Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • develop
  • main
  • new-changes
  • renovate/django-5.x
  • renovate/sentry-sdk-2.x
  • renovate/whitenoise-6.x
  • v1.0.0
  • v1.0.1
  • v1.1.0
  • v1.1.1
  • v1.1.2
  • v2.0.0
  • v2.0.1
  • v2.0.2
  • v2.0.3
  • v2.1.0
  • v3.0.0
  • v3.0.0-develop.1
  • v3.0.1
  • v3.0.2
  • v3.0.2-develop.1
  • v3.0.3
22 results

Target

Select target project
  • tobiasff3200/django-core
1 result
Select Git revision
  • develop
  • main
  • new-changes
  • renovate/django-5.x
  • renovate/sentry-sdk-2.x
  • renovate/whitenoise-6.x
  • v1.0.0
  • v1.0.1
  • v1.1.0
  • v1.1.1
  • v1.1.2
  • v2.0.0
  • v2.0.1
  • v2.0.2
  • v2.0.3
  • v2.1.0
  • v3.0.0
  • v3.0.0-develop.1
  • v3.0.1
  • v3.0.2
  • v3.0.2-develop.1
  • v3.0.3
22 results
Show changes

Commits on Source 2

{% load static %} {% load static %}
<!DOCTYPE html> <!DOCTYPE html>
<html> <html lang="de">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Core{% endblock %}</title> <title>{% block title %}Core{% endblock %}</title>
<link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css"> <link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css">
{# <meta http-equiv="refresh" content="10">#} {% block head %}{% endblock %}
</head> </head>
<body> <body class="break-words hyphens-auto">
{% block content %} {% block content %}
{% endblock %} {% endblock %}
</body> </body>
......
{% load static %} {% load static %}
<!DOCTYPE html> <!DOCTYPE html>
<html> <html lang="de">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}Core{% endblock %}</title> <title>{% block title %}Core{% endblock %}</title>
<link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css"> <link href="{% static 'core/css/output.css' %}" rel="stylesheet" type="text/css">
{#<meta http-equiv="refresh" content="10">#}
{% block head %}{% endblock %} {% block head %}{% endblock %}
</head> </head>
<body> <body>
<div class="drawer"> <div class="drawer break-words hyphens-auto">
<input id="drawer" type="checkbox" class="drawer-toggle" /> <input id="drawer" type="checkbox" class="drawer-toggle" />
<div class="drawer-content flex flex-col"> <div class="drawer-content flex flex-col">
<!-- Navbar --> <!-- Navbar -->
...@@ -69,7 +68,7 @@ ...@@ -69,7 +68,7 @@
</div> </div>
</div> </div>
<!-- Page content here --> <!-- Page content here -->
<main class="p-4 w-full"> <main class="p-4 w-full break-words hyphens-auto">
{% block content %} {% block content %}
Content Content
{% endblock %} {% endblock %}
......