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
a5c9a6d744596e7ac831bb5e36b35a5d2be934d5 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_csp-4.x
renovate/jsonschema-4.x
4 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
a5c9a6d744596e7ac831bb5e36b35a5d2be934d5
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
1 changed file
AKScheduling/templates/admin/AKScheduling/interest.html
+43
-0
43 additions, 0 deletions
AKScheduling/templates/admin/AKScheduling/interest.html
with
43 additions
and
0 deletions
Some changes are not shown.
For a faster browsing experience, only
1 of 361+
files are shown.
AKScheduling/templates/admin/AKScheduling/interest.html
0 → 100644
View file @
652ed0a3
{% extends "admin/base_site.html" %}
{% load django_bootstrap5 %}
{% load i18n %}
{% load l10n %}
{% load tz %}
{% load static %}
{% load fontawesome_6 %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
<div
class=
"text-center text-md-center"
>
<h5>
{% if previous_ak %}
<a
href=
"{% url "
admin:enter-interest
"
event.slug
previous_ak.pk
%}"
class=
"pull-left"
>
<
-{{ previous_ak.name }}
</a>
|
{% endif %}
{% if next_ak %}
<a
href=
"{% url "
admin:enter-interest
"
event.slug
next_ak.pk
%}"
>
{{ next_ak.name }} -
>
</a>
{% endif %}
</h5>
</div>
<h4>
{{ ak.name }}
</h4>
<h5>
{{ ak.short_name }}
</h5>
<div
class=
"mb-3"
>
<form
method=
"POST"
class=
"post-form"
>
{% csrf_token %}
{% bootstrap_form form %}
<button
type=
"submit"
class=
"save btn btn-primary float-end"
>
{% fa6_icon "check" 'fas' %} {% trans "Submit" %}
</button>
</form>
</div>
{% for category, aks in categories_with_aks %}
<h5
class=
"mt-4"
>
{{ category.name }}
</h5>
{% for link_ak in aks %}
<a
href=
"{% url "
admin:enter-interest
"
event.slug
link_ak.pk
%}"
>
{{ link_ak.name }}
</a>
·
{% endfor %}
{% endfor %}
{% endblock %}
This diff is collapsed.
Click to expand it.
Prev
1
…
15
16
17
18
19
Next