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
!50
Add way to edit information about school and school term. Closes
#19
.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add way to edit information about school and school term. Closes
#19
.
19-provide-information-on-school
into
master
Overview
9
Commits
6
Pipelines
0
Changes
7
Merged
Tom Teichler
requested to merge
19-provide-information-on-school
into
master
5 years ago
Overview
9
Commits
6
Pipelines
0
Changes
7
Expand
Closes
#19 (closed)
0
0
Merge request reports
Compare
master
version 12
f086311c
5 years ago
version 11
8c70d65f
5 years ago
version 10
7513f52c
5 years ago
version 9
13a30fee
5 years ago
version 8
39ba34dc
5 years ago
version 7
f06c07c8
5 years ago
version 6
a0f55f8f
5 years ago
version 5
a34e134e
5 years ago
version 4
3bde7b7d
5 years ago
version 3
4cb8a079
5 years ago
version 2
3e9f8d67
5 years ago
version 1
556b0530
5 years ago
master (base)
and
latest version
latest version
15727601
6 commits,
5 years ago
version 12
f086311c
5 commits,
5 years ago
version 11
8c70d65f
7 commits,
5 years ago
version 10
7513f52c
6 commits,
5 years ago
version 9
13a30fee
5 commits,
5 years ago
version 8
39ba34dc
4 commits,
5 years ago
version 7
f06c07c8
3 commits,
5 years ago
version 6
a0f55f8f
2 commits,
5 years ago
version 5
a34e134e
3 commits,
5 years ago
version 4
3bde7b7d
2 commits,
5 years ago
version 3
4cb8a079
1 commit,
5 years ago
version 2
3e9f8d67
1 commit,
5 years ago
version 1
556b0530
1 commit,
5 years ago
7 files
+
149
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
biscuit/core/templates/core/edit_school.html
0 → 100644
+
26
−
0
Options
{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load bootstrap4 i18n %}
{% block bootstrap4_title %}{% blocktrans %}Edit school{% endblocktrans %} - {{ block.super}}{% endblock %}
{% block page_title %}{% blocktrans %}Edit school{% endblocktrans %}{% endblock %}
{% block bootstrap4_extra_head %}
{{ block.super }}
{{ edit_school_form.media }}
{% endblock %}
{% block content %}
<form
method=
"post"
enctype=
"multipart/form-data"
>
{% csrf_token %}
{% bootstrap_form edit_school_form %}
<button
type=
"submit"
class=
"btn btn-secondary"
>
{% blocktrans %}Edit{% endblocktrans %}
</button>
</form>
{% endblock %}
Loading