Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
2
2ndSemProj1Froyo Keith Santos
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
Keith Adrian Santos
2ndSemProj1Froyo Keith Santos
Commits
75eca6df
Commit
75eca6df
authored
Mar 17, 2020
by
Keith Adrian Santos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added the templates folder in froyo with all 12 htmls
parent
fb2bbb55
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
132 additions
and
0 deletions
+132
-0
db.sqlite3
thegoodplace/db.sqlite3
+0
-0
ingredients_create_form.html
thegoodplace/froyo/templates/ingredients_create_form.html
+11
-0
ingredients_detail.html
thegoodplace/froyo/templates/ingredients_detail.html
+11
-0
ingredients_list.html
thegoodplace/froyo/templates/ingredients_list.html
+11
-0
ingredients_update_form.html
thegoodplace/froyo/templates/ingredients_update_form.html
+11
-0
orders_create_form.html
thegoodplace/froyo/templates/orders_create_form.html
+11
-0
orders_detail.html
thegoodplace/froyo/templates/orders_detail.html
+11
-0
orders_list.html
thegoodplace/froyo/templates/orders_list.html
+11
-0
orders_update_form.html
thegoodplace/froyo/templates/orders_update_form.html
+11
-0
recipes_create_form.html
thegoodplace/froyo/templates/recipes_create_form.html
+11
-0
recipes_detail.html
thegoodplace/froyo/templates/recipes_detail.html
+11
-0
recipes_list.html
thegoodplace/froyo/templates/recipes_list.html
+11
-0
recipes_update_form.html
thegoodplace/froyo/templates/recipes_update_form.html
+11
-0
urls.cpython-38.pyc
thegoodplace/thegoodplace/__pycache__/urls.cpython-38.pyc
+0
-0
wsgi.cpython-38.pyc
thegoodplace/thegoodplace/__pycache__/wsgi.cpython-38.pyc
+0
-0
No files found.
thegoodplace/db.sqlite3
0 → 100644
View file @
75eca6df
File added
thegoodplace/froyo/templates/ingredients_create_form.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Ingredients - Create
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/ingredients_detail.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Ingredients - Detail
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/ingredients_list.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Ingredients - List
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/ingredients_update_form.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Ingredients - Update
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/orders_create_form.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Orders - Create
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/orders_detail.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Orders - Detail
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/orders_list.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Orders - List
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/orders_update_form.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Orders - Update
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/recipes_create_form.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Recipes - Create
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/recipes_detail.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Recipes - Detail
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/recipes_list.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Recipes - List
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/froyo/templates/recipes_update_form.html
0 → 100644
View file @
75eca6df
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<header>
<h1>
Recipes - Update
</h1>
</header>
</body>
</html>
\ No newline at end of file
thegoodplace/thegoodplace/__pycache__/urls.cpython-38.pyc
0 → 100644
View file @
75eca6df
File added
thegoodplace/thegoodplace/__pycache__/wsgi.cpython-38.pyc
0 → 100644
View file @
75eca6df
File added
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