Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
Midterm-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
Kyra Hung
Midterm-Project
Commits
58c8c5ee
Commit
58c8c5ee
authored
Mar 16, 2020
by
KY-2187
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created html files
parent
7be55e2f
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
54 additions
and
0 deletions
+54
-0
ingredients_create_form.html
Midterm Project/froyo/templates/ingredients_create_form.html
+3
-0
ingredients_detail.html
Midterm Project/froyo/templates/ingredients_detail.html
+3
-0
ingredients_list.html
Midterm Project/froyo/templates/ingredients_list.html
+3
-0
ingredients_update_form.html
Midterm Project/froyo/templates/ingredients_update_form.html
+3
-0
orders_create_form.html
Midterm Project/froyo/templates/orders_create_form.html
+3
-0
orders_detail.html
Midterm Project/froyo/templates/orders_detail.html
+3
-0
orders_list.html
Midterm Project/froyo/templates/orders_list.html
+3
-0
orders_update_form.html
Midterm Project/froyo/templates/orders_update_form.html
+3
-0
recipes_create_form.html
Midterm Project/froyo/templates/recipes_create_form.html
+3
-0
recipes_detail.html
Midterm Project/froyo/templates/recipes_detail.html
+3
-0
recipes_list.html
Midterm Project/froyo/templates/recipes_list.html
+3
-0
recipes_update_form.html
Midterm Project/froyo/templates/recipes_update_form.html
+3
-0
functional_test.py
Midterm Project/functional_test.py
+17
-0
settings.py
Midterm Project/thegoodplace/settings.py
+1
-0
No files found.
Midterm Project/froyo/templates/ingredients_create_form.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Ingredients - Create
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/ingredients_detail.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Ingredients - Detail
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/ingredients_list.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Ingredients - List
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/ingredients_update_form.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Ingredients - Update
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/orders_create_form.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Orders - Create
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/orders_detail.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Orders - Detail
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/orders_list.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Orders - List
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/orders_update_form.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Orders - Update
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/recipes_create_form.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Recipes - Create
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/recipes_detail.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Recipes - Detail
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/recipes_list.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Recipes - List
</title></head>
</html>
\ No newline at end of file
Midterm Project/froyo/templates/recipes_update_form.html
0 → 100644
View file @
58c8c5ee
<html>
<head><title>
Recipes - Update
</title></head>
</html>
\ No newline at end of file
Midterm Project/functional_test.py
View file @
58c8c5ee
import
unittest
from
selenium
import
webdriver
class
NewVisitorTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
browser
=
webdriver
.
Firefox
()
def
tearDown
(
self
):
self
.
browser
.
quit
()
def
somethingsomething
(
self
):
if
__name__
==
'__main__'
:
unittest
.
main
(
warnings
=
'ignore'
)
\ No newline at end of file
Midterm Project/thegoodplace/settings.py
View file @
58c8c5ee
...
@@ -37,6 +37,7 @@ INSTALLED_APPS = [
...
@@ -37,6 +37,7 @@ INSTALLED_APPS = [
'django.contrib.sessions'
,
'django.contrib.sessions'
,
'django.contrib.messages'
,
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'django.contrib.staticfiles'
,
'froyo'
,
]
]
MIDDLEWARE
=
[
MIDDLEWARE
=
[
...
...
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