Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
thegoodplace-Laguesma
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
Cian Laguesma
thegoodplace-Laguesma
Commits
73290f66
Commit
73290f66
authored
Mar 22, 2020
by
cianlaguesma
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added titles for html files and fixed FT
parent
7ff5bebb
Changes
14
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
43 additions
and
16 deletions
+43
-16
index.html
froyo/templates/index.html
+1
-1
ingredients_create_form.html
froyo/templates/ingredients_create_form.html
+1
-0
ingredients_detail.html
froyo/templates/ingredients_detail.html
+1
-0
ingredients_list.html
froyo/templates/ingredients_list.html
+1
-0
ingredients_update_form.html
froyo/templates/ingredients_update_form.html
+1
-0
orders_create_form.html
froyo/templates/orders_create_form.html
+1
-0
orders_detail.html
froyo/templates/orders_detail.html
+1
-0
orders_list.html
froyo/templates/orders_list.html
+2
-0
orders_update_form.html
froyo/templates/orders_update_form.html
+2
-0
recipes_create_form.html
froyo/templates/recipes_create_form.html
+2
-0
recipes_detail.html
froyo/templates/recipes_detail.html
+1
-0
recipes_list.html
froyo/templates/recipes_list.html
+1
-0
recipes_update_form.html
froyo/templates/recipes_update_form.html
+1
-0
functional_tests.py
functional_tests.py
+27
-15
No files found.
froyo/templates/index.html
View file @
73290f66
...
...
@@ -4,7 +4,7 @@
<h1
id=
"header_home"
>
The Good Place Froyo Shop
</h1>
</head>
<body>
<ul>
<ul
id=
"main_list"
>
<li><a
href=
"http://localhost:8000/ingredients/create_form"
id=
"ingredients_create_form"
>
Create form for Ingredients
</a></li>
<li><a
href=
"http://localhost:8000/ingredients/update_form"
id=
"ingredients_update_form"
>
Update form for Ingredients
</a></li>
<li><a
href=
"http://localhost:8000/ingredients/list"
id=
"ingredients_list"
>
See List for all Ingredients
</a></li>
...
...
froyo/templates/ingredients_create_form.html
View file @
73290f66
<html>
<head>
<title>
Ingredients - Create Form
</title>
<h1
id=
"ingredients_create_form_header"
>
Ingredients - Create Form
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
...
...
froyo/templates/ingredients_detail.html
View file @
73290f66
<html>
<head>
<title>
Ingredients - Detail
</title>
<h1
id=
"ingredients_detail_header"
>
Ingredients - Detail
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
...
...
froyo/templates/ingredients_list.html
View file @
73290f66
<html>
<head>
<title>
Ingredients - List
</title>
<h1
id=
"ingredients_list_header"
>
Ingredients - List
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
...
...
froyo/templates/ingredients_update_form.html
View file @
73290f66
<html>
<head>
<title>
Ingredients - Update Form
</title>
<h1
id=
"ingredients_update_form_header"
>
Ingredients - Update Form
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
...
...
froyo/templates/orders_create_form.html
View file @
73290f66
<html>
<head>
<title>
Orders - Create Form
</title>
<h1
id=
"orders_create_form_header"
>
Orders - Create Form
</h1>
</head>
<body><a
href=
"http://localhost:8000/index"
id=
"home"
>
Return to Home Page
</a></body>
...
...
froyo/templates/orders_detail.html
View file @
73290f66
<html>
<head>
<title>
Orders - Detail
</title>
<h1
id=
"orders_detail_header"
>
Orders - Detail
</h1>
</head>
...
...
froyo/templates/orders_list.html
View file @
73290f66
<html>
<head>
<title>
Orders - List
</title>
<h1
id=
"orders_list_header"
>
Orders - List
</h1>
</head>
...
...
froyo/templates/orders_update_form.html
View file @
73290f66
<html>
<head>
<title>
Orders - Update Form
</title>
<h1
id=
"orders_update_form_header"
>
Orders - Update Form
</h1>
</head>
...
...
froyo/templates/recipes_create_form.html
View file @
73290f66
<html>
<head>
<title>
Recipes - Create Form
</title>
<h1
id=
"recipes_create_form_header"
>
Recipes - Create Form
</h1>
</head>
...
...
froyo/templates/recipes_detail.html
View file @
73290f66
<html>
<head>
<title>
Recipes - Detail
</title>
<h1
id=
"recipes_detail_header"
>
Recipes - Detail
</h1>
</head>
...
...
froyo/templates/recipes_list.html
View file @
73290f66
<html>
<head>
<title>
Recipes - List
</title>
<h1
id=
"recipes_list_header"
>
Recipes - List
</h1>
</head>
...
...
froyo/templates/recipes_update_form.html
View file @
73290f66
<html>
<head>
<title>
Recipes - Update Form
</title>
<h1
id=
"recipes_update_form_header"
>
Recipes - Update Form
</h1>
</head>
...
...
functional_tests.py
View file @
73290f66
This diff is collapsed.
Click to expand it.
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