Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Chronos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
AlekSIS®
Official
AlekSIS-App-Chronos
Merge requests
!47
Advanced data in timetable views
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Advanced data in timetable views
feature/advanced-data-timetable-views
into
master
Overview
2
Commits
18
Pipelines
0
Changes
19
All threads resolved!
Hide all comments
Merged
Jonathan Weth
requested to merge
feature/advanced-data-timetable-views
into
master
4 years ago
Overview
2
Commits
18
Pipelines
0
Changes
2
All threads resolved!
Hide all comments
Expand
Closes
#72 (closed)
Closes
#73 (closed)
Edited
4 years ago
by
Jonathan Weth
0
0
Merge request reports
Compare
version 5
version 10
097f53d7
4 years ago
version 9
193bcfb7
4 years ago
version 8
97995b88
4 years ago
version 7
3e3ad4ce
4 years ago
version 6
bbb98434
4 years ago
version 5
949bb6fb
4 years ago
version 4
a10cd6ec
4 years ago
version 3
1005ae50
4 years ago
version 2
32570814
4 years ago
version 1
b5c52a83
4 years ago
master (base)
and
version 6
latest version
fe3d00a7
18 commits,
4 years ago
version 10
097f53d7
17 commits,
4 years ago
version 9
193bcfb7
16 commits,
4 years ago
version 8
97995b88
15 commits,
4 years ago
version 7
3e3ad4ce
14 commits,
4 years ago
version 6
bbb98434
13 commits,
4 years ago
version 5
949bb6fb
12 commits,
4 years ago
version 4
a10cd6ec
11 commits,
4 years ago
version 3
1005ae50
10 commits,
4 years ago
version 2
32570814
9 commits,
4 years ago
version 1
b5c52a83
8 commits,
4 years ago
Show latest version
2 files
+
35
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
aleksis/apps/chronos/migrations/0010_absence_reason_name.py
0 → 100644
+
33
−
0
Options
# Generated by Django 3.0.5 on 2020-04-13 13:36
from
django.db
import
migrations
,
models
from
django.db.models
import
F
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
chronos
'
,
'
0009_extended_data
'
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
'
absencereason
'
,
name
=
'
name
'
,
field
=
models
.
CharField
(
default
=
F
(
"
description
"
),
blank
=
True
,
max_length
=
255
,
null
=
True
,
verbose_name
=
'
Name
'
),
),
migrations
.
AddField
(
model_name
=
'
absencereason
'
,
name
=
'
short_name
'
,
field
=
models
.
CharField
(
default
=
F
(
"
title
"
),
max_length
=
255
,
verbose_name
=
'
Short name
'
),
preserve_default
=
False
,
),
migrations
.
RemoveField
(
model_name
=
'
absencereason
'
,
name
=
'
description
'
,
),
migrations
.
RemoveField
(
model_name
=
'
absencereason
'
,
name
=
'
title
'
,
),
]
Loading