Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-SkillFlux
Manage
Activity
Members
Labels
Plan
Issues
6
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
Teckids
Projekt Indiedact
SkillFlux
AlekSIS-App-SkillFlux
Merge requests
!2
Resolve "UI for adding/removing/editing skillsets"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Resolve "UI for adding/removing/editing skillsets"
2-ui-for-adding-removing-editing-skillsets
into
main
Overview
1
Commits
15
Pipelines
10
Changes
10
Open
Philipp Stahl
requested to merge
2-ui-for-adding-removing-editing-skillsets
into
main
3 years ago
Overview
1
Commits
15
Pipelines
10
Changes
10
Expand
Closes
#2
Edited
2 years ago
by
Martin Winter
0
0
Merge request reports
Compare
main
version 8
2ec6306a
2 years ago
version 7
22bc1f02
2 years ago
version 6
45c37d85
2 years ago
version 5
bc69b4db
2 years ago
version 4
2db7181e
3 years ago
version 3
ca336ba4
3 years ago
version 2
86ddee95
3 years ago
version 1
fbf4077f
3 years ago
main (HEAD)
and
latest version
latest version
541a8e73
15 commits,
2 years ago
version 8
2ec6306a
14 commits,
2 years ago
version 7
22bc1f02
12 commits,
2 years ago
version 6
45c37d85
11 commits,
2 years ago
version 5
bc69b4db
10 commits,
2 years ago
version 4
2db7181e
8 commits,
3 years ago
version 3
ca336ba4
3 commits,
3 years ago
version 2
86ddee95
2 commits,
3 years ago
version 1
fbf4077f
1 commit,
3 years ago
10 files
+
221
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
aleksis/apps/skillflux/templates/skillflux/skillset/create.html
0 → 100644
+
23
−
0
Options
{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load material_form i18n any_js %}
{% block extra_head %}
{{ form.media.css }}
{% include_css "select2-materialize" %}
{% endblock %}
{% block browser_title %}{% blocktrans %}Create skillset{% endblocktrans %}{% endblock %}
{% block page_title %}{% blocktrans %}Create skillset{% endblocktrans %}{% endblock %}
{% block content %}
<form
method=
"post"
>
{% csrf_token %}
{% form form=form %}{% endform %}
{% include "core/partials/save_button.html" %}
</form>
{% include_js "select2-materialize" %}
{{ form.media.js }}
{% endblock %}
Loading