Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Merge requests
!38
Add data management page. Closes
#61
.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add data management page. Closes
#61
.
issue61
into
master
Overview
0
Commits
1
Pipelines
0
Changes
4
Merged
Tom Teichler
requested to merge
issue61
into
master
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Viewing commit
a24fd548
Show latest version
4 files
+
44
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
Verified
a24fd548
Add data management page. Closes
#61
.
· a24fd548
Tom Teichler
authored
5 years ago
biscuit/core/templates/core/data_management.html
0 → 100644
+
24
−
0
Options
{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load bootstrap4 menu_generator %}
{% block page_title %}BiscuIT administration{% endblock %}
{% block content %}
{% get_menu "DATA_MANAGEMENT_MENU" as data_menu %}
<ul>
{% for item in data_menu %}
{% if not item.submenu %}
<li><a
href=
"{{ item.url }}"
>
{{ item.name }}
</a></li>
{% endif %}
{% if item.submenu %}
<li><a
href=
"{{ item.url }}"
>
{{ item.name }}
</a></li>
<ul>
{% for menu in item.submenu %}
<li><a
href=
"{{ menu.url }}"
>
{{ menu.name }}
</a></li>
{% endfor %}
</ul>
{% endif %}
{% endfor %}
</ul>
{% endblock %}
Loading