Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProjectClient_Y1S1_tramshedTech_team15
Manage
Activity
Members
Labels
Plan
Issues
7
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Arianne Bayliss
ProjectClient_Y1S1_tramshedTech_team15
Commits
97c081c0
Commit
97c081c0
authored
2 years ago
by
Liam Driscoll
Browse files
Options
Downloads
Patches
Plain Diff
Merge conflict was unable to be resolved. New merge.
parent
c76795c2
No related branches found
Branches containing commit
No related tags found
1 merge request
!45
Resolve "As a moderator, I want to be able to amend (and remove) existing locations/spaces/features."
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
project_server.py
+5
-7
5 additions, 7 deletions
project_server.py
with
5 additions
and
7 deletions
project_server.py
+
5
−
7
View file @
97c081c0
...
...
@@ -17,19 +17,17 @@ def connect_db(db_file=DATABASE):
print
(
"
Error connecting to database.
"
)
return
conn
<<<<<<<
HEAD
@app.route
(
'
/SearchRecord
'
,
methods
=
[
'
POST
'
])
=======
@app.route
(
"
/
"
,
methods
=
[
'
GET
'
])
def
returnIndex
():
return
render_template
(
"
test.html
"
)
if
(
request
.
method
==
'
GET
'
):
return
render_template
(
"
test.html
"
)
@app.route
(
"
/Manage_Coworking_Spaces
"
,
methods
=
[
'
GET
'
])
def
returnManageCoworkingSpaces
():
return
render_template
(
"
Manage_Coworking_Spaces.html
"
)
if
(
request
.
method
==
'
GET
'
):
return
render_template
(
"
Manage_Coworking_Spaces.html
"
)
@app.route
(
"
/SearchRecord
"
,
methods
=
[
'
POST
'
])
>>>>>>>
447
d1e30bd664c46c1ad4a89ed35119391ab95a6
@app.route
(
"
/SearchRecord
"
,
methods
=
[
'
POST
'
,
'
GET
'
])
def
searchRecord
():
if
(
request
.
method
==
'
POST
'
):
...
...
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