Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AKPlanning
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KIF
AKPlanning
Compare revisions
347a93f4a58ab98dd52d3a0075c0fc882eba2e15 to main
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
kif/akplanning
Select target project
No results found
main
Select Git revision
Branches
komasolver
main
renovate/django-5.x
renovate/django-debug-toolbar-5.x
renovate/django_csp-4.x
renovate/djangorestframework-3.x
renovate/tzdata-2025.x
renovate/uwsgi-2.x
8 results
Swap
Target
felix_bonn/akplanning
Select target project
konstantin/akplanning
matedealer/akplanning
kif/akplanning
mirco/akplanning
lordofthevoid/akplanning
voidptr/akplanning
xayomer/akplanning-fork
mollux/akplanning
neumantm/akplanning
mmarx/akplanning
nerf/akplanning
felix_bonn/akplanning
sebastian.uschmann/akplanning
13 results
347a93f4a58ab98dd52d3a0075c0fc882eba2e15
Select Git revision
Branches
ak-import
feature/clear-schedule-button
feature/json-export-via-rest-framework
feature/json-schedule-import-tests
feature/preference-polling
feature/preference-polling-form
feature/preference-polling-form-rebased
feature/preference-polling-rebased
fix/add-room-import-only-once
main
merge-to-upstream
renovate/django-5.x
renovate/django-debug-toolbar-4.x
renovate/django-simple-history-3.x
renovate/mysqlclient-2.x
15 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/base.html
+22
-7
22 additions, 7 deletions
templates/base.html
with
22 additions
and
7 deletions
templates/base.html
View file @
5753b2c1
{% load compress %}
{% load static %}
{% load static %}
{% load i18n %}
{% load i18n %}
{% load django_bootstrap5 %}
{% load django_bootstrap5 %}
{% load fontawesome_
5
%}
{% load fontawesome_
6
%}
{% load tags_AKModel %}
{% load tags_AKModel %}
<!DOCTYPE html>
<!DOCTYPE html>
...
@@ -13,12 +14,25 @@
...
@@ -13,12 +14,25 @@
<title>
{% block title %}AK Planning{% endblock %}
</title>
<title>
{% block title %}AK Planning{% endblock %}
</title>
<!-- Load bootstrap, jquery and fontawesome-->
<!-- Load bootstrap, jquery and fontawesome-->
{% bootstrap_css %}
{% compress css %}
{% bootstrap_javascript %}
<link
rel=
"stylesheet"
type=
"text/x-scss"
href=
"{% static 'common/vendor/bootswatch-lumen/theme.scss' %}"
>
<script
src=
"{% static 'common/vendor/jquery/jquery-3.3.1.min.js' %}"
></script>
<link
rel=
"stylesheet"
href=
"{% static 'common/vendor/chosen-js/chosen.css' %}"
>
{% fontawesome_5_static %}
<link
rel=
"stylesheet"
href=
"{% static 'common/css/bootstrap-chosen.css' %}"
>
{% if 'AKDashboard'|check_app_installed %}
<link
rel=
"stylesheet"
href=
"{% static 'common/css/custom.css' %}"
>
<link
rel=
"stylesheet"
href=
"{% static 'AKDashboard/style.css' %}"
>
{% endif %}
<link
href=
"{% static 'common/vendor/select2/select2.min.css' %}"
rel=
"stylesheet"
/>
{% fontawesome_6_css %}
<link
rel=
"stylesheet"
href=
"{% static 'common/css/custom.css' %}"
>
{% endcompress %}
{% compress js %}
{% bootstrap_javascript %}
<script
src=
"{% static 'common/vendor/jquery/jquery-3.6.3.min.js' %}"
></script>
<script
src=
"{% static 'common/vendor/select2/select2.min.js' %}"
></script>
{% fontawesome_6_js %}
<script
src=
"{% static 'common/vendor/vuejs/vue.global.js' %}"
></script>
{% endcompress %}
<script
type=
'text/javascript'
>
<script
type=
'text/javascript'
>
var
changed_form
=
false
;
var
changed_form
=
false
;
...
@@ -93,6 +107,7 @@
...
@@ -93,6 +107,7 @@
{% block footer_custom %}
{% block footer_custom %}
{% endblock %}
{% endblock %}
<a
href=
"{% url "
admin:index
"
%}"
>
{% trans "Go to backend" %}
</a>
·
<a
href=
"{% url "
admin:index
"
%}"
>
{% trans "Go to backend" %}
</a>
·
<a
href=
"{% url "
docs_root
"
%}"
>
{% trans "Docs" %}
</a>
·
{% footer_info as FI %}
{% footer_info as FI %}
{% if FI.impress_text %}
{% if FI.impress_text %}
{{ FI.impress_text }}
·
{{ FI.impress_text }}
·
...
...
This diff is collapsed.
Click to expand it.
Prev
1
…
11
12
13
14
15
Next