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
c5619991fc1d852a72ca4562d9535891dbfb9c8e 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
feature-type-filters
komasolver
main
renovate/django-5.x
renovate/django_csp-4.x
renovate/jsonschema-4.x
renovate/uwsgi-2.x
7 results
Swap
Target
mollux/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
c5619991fc1d852a72ca4562d9535891dbfb9c8e
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
AKScheduling/templates/admin/AKScheduling/status/cvs.html
+12
-0
12 additions, 0 deletions
AKScheduling/templates/admin/AKScheduling/status/cvs.html
AKScheduling/templates/admin/AKScheduling/unscheduled.html
+35
-0
35 additions, 0 deletions
AKScheduling/templates/admin/AKScheduling/unscheduled.html
with
47 additions
and
0 deletions
Some changes are not shown.
For a faster browsing experience, only
2 of 362+
files are shown.
AKScheduling/templates/admin/AKScheduling/status/cvs.html
0 → 100644
View file @
975c7bab
{% load i18n %}
<div
class=
"text-center"
>
<a
href=
"{% url 'admin:constraint-violations' slug=event.slug %}"
>
<h1>
{{ constraint_violations_count }}
</h1>
{% blocktrans count constraint_violations_count=constraint_violations_count %}
<h3>
Constraint Violation
</h3>
{% plural %}
<h3>
Constraint Violations
</h3>
{% endblocktrans %}
</a>
</div>
This diff is collapsed.
Click to expand it.
AKScheduling/templates/admin/AKScheduling/unscheduled.html
0 → 100644
View file @
975c7bab
{% extends "admin/base_site.html" %}
{% load tags_AKModel %}
{% load i18n %}
{% load tz %}
{% block title %}{% trans "Unscheduled AK Slots" %}: {{event}}{% endblock %}
{% block content %}
<h3>
{% trans "Count" %}: {{ akslots.count }}
</h3>
{% regroup akslots by ak as unscheduled_by_ak %}
<ul>
{% for group in unscheduled_by_ak %}
<li>
{% with group.grouper as ak %}
{% if "AKSubmission"|check_app_installed %}
<a
href=
"{{ ak.detail_url }}"
>
{{ ak }}
</a>
{% else %}
{{ ak }}
{% endif %}
{% endwith %}
<ul>
{% for slot in group.list %}
<li><a
href=
"{% url 'admin:AKModel_akslot_change' slot.pk %}"
>
{{ slot.duration }}
</a></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
<a
href=
"{% url 'admin:event_status' event.slug %}"
>
{% trans "Event Status" %}
</a>
{% endblock %}
This diff is collapsed.
Click to expand it.
Prev
1
…
15
16
17
18
19
Next