Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
scheduling-system
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
SMASCH
scheduling-system
Commits
8d58cac6
Commit
8d58cac6
authored
6 years ago
by
Carlos Vega
Browse files
Options
Downloads
Patches
Plain Diff
changed model to add different kinds of availabilities. Issue
#241
parent
96fcdb3a
No related branches found
No related tags found
1 merge request
!171
Feature/daily availability
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
smash/web/models/holiday.py
+3
-0
3 additions, 0 deletions
smash/web/models/holiday.py
with
3 additions
and
0 deletions
smash/web/models/holiday.py
+
3
−
0
View file @
8d58cac6
# coding=utf-8
# coding=utf-8
from
django.db
import
models
from
django.db
import
models
from
constants
import
AVAILABILITY_CHOICES
class
Holiday
(
models
.
Model
):
class
Holiday
(
models
.
Model
):
class
Meta
:
class
Meta
:
...
@@ -21,6 +22,8 @@ class Holiday(models.Model):
...
@@ -21,6 +22,8 @@ class Holiday(models.Model):
verbose_name
=
'
Comments
'
verbose_name
=
'
Comments
'
)
)
kind
=
models
.
CharField
(
max_length
=
1
,
choices
=
AVAILABILITY_CHOICES
,
default
=
'
H
'
,
help_text
=
'
Defines the kind of availability. Either Holiday or Extra Availability.
'
)
def
__str__
(
self
):
def
__str__
(
self
):
return
"
%s %s
"
%
(
self
.
person
.
first_name
,
self
.
person
.
last_name
)
return
"
%s %s
"
%
(
self
.
person
.
first_name
,
self
.
person
.
last_name
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment