Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CSCI 41 Project
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Patricia Isabella Nava
CSCI 41 Project
Commits
faf69170
Commit
faf69170
authored
Nov 30, 2022
by
Stephanie Tullao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modified format of schedule
parent
74fd40aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
models.py
MagisAir/booking/models.py
+1
-1
No files found.
MagisAir/booking/models.py
View file @
faf69170
...
...
@@ -121,7 +121,7 @@ class Flight(models.Model):
Destination_Airport
=
models
.
ForeignKey
(
City
,
on_delete
=
models
.
CASCADE
,
related_name
=
'destination'
)
def
__str__
(
self
):
return
' ('
+
self
.
Flight_Code
+
' '
+
self
.
Origin_Airport
.
City_Name
+
' to '
+
self
.
Destination_Airport
.
City_Name
return
self
.
Flight_Code
+
' ('
+
self
.
Origin_Airport
.
City_Name
+
' to '
+
self
.
Destination_Airport
.
City_Name
+
')'
class
Schedule
(
models
.
Model
):
Sched_Code
=
models
.
AutoField
(
primary_key
=
True
,
editable
=
False
,
unique
=
True
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment