Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
thegoodplace
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
Kirby Ezekiel Santos
thegoodplace
Commits
e81bdc4b
Commit
e81bdc4b
authored
Mar 18, 2020
by
Kirby Ezekiel Santos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added css to recipes detail
parent
4fc36640
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
13 deletions
+18
-13
tests.py
froyo/tests.py
+1
-1
recipes_list.html
templates/recipes_list.html
+17
-12
No files found.
froyo/tests.py
View file @
e81bdc4b
...
@@ -98,7 +98,7 @@ class PageContainsCssTest(TestCase):
...
@@ -98,7 +98,7 @@ class PageContainsCssTest(TestCase):
self
.
assertIn
(
'<link rel="stylesheet" href="/static/styles.css">'
,
html
)
self
.
assertIn
(
'<link rel="stylesheet" href="/static/styles.css">'
,
html
)
def
test_recipes_list_contains_css
(
self
):
def
test_recipes_list_contains_css
(
self
):
response
=
self
.
client
.
get
(
'/recipes
_
list'
)
response
=
self
.
client
.
get
(
'/recipes
-
list'
)
html
=
response
.
content
.
decode
(
'utf8'
)
html
=
response
.
content
.
decode
(
'utf8'
)
self
.
assertIn
(
'<link rel="stylesheet" href="/static/bootstrap.min.css">'
,
html
)
self
.
assertIn
(
'<link rel="stylesheet" href="/static/bootstrap.min.css">'
,
html
)
self
.
assertIn
(
'<link rel="stylesheet" href="/static/styles.css">'
,
html
)
self
.
assertIn
(
'<link rel="stylesheet" href="/static/styles.css">'
,
html
)
templates/recipes_list.html
View file @
e81bdc4b
...
@@ -2,14 +2,17 @@
...
@@ -2,14 +2,17 @@
<html>
<html>
<head>
<head>
<title>
Recipes - List
</title>
<title>
Recipes - List
</title>
<link
rel=
"stylesheet"
href=
"/static/bootstrap.min.css"
>
<link
rel=
"stylesheet"
href=
"/static/styles.css"
>
</head>
</head>
<body>
<body>
<div>
<div
class=
"col-lg-10 col-lg-10 mx-auto container"
>
<h1
id=
"page_header"
>
Recipes - List
</h1>
<h1
id=
"page_header"
>
Recipes - List
</h1>
</div>
</div>
<div>
<div
class=
"col-lg-10 col-lg-10 mx-auto container"
>
<table
class=
"table"
>
<table
class=
"table"
>
<thead>
<thead>
<tr>
<tr>
...
@@ -22,7 +25,7 @@
...
@@ -22,7 +25,7 @@
<td></td>
<td></td>
<td>
<td>
<form
method=
"get"
action=
"http://localhost:8000/recipes-detail"
>
<form
method=
"get"
action=
"http://localhost:8000/recipes-detail"
>
<button
type=
"submit"
id=
"button_to_recipes_detail"
>
Go to detail
</button>
<button
type=
"submit"
class=
"btn-sm"
id=
"button_to_recipes_detail"
>
Go to detail
</button>
</form>
</form>
</td>
</td>
</tr>
</tr>
...
@@ -30,15 +33,17 @@
...
@@ -30,15 +33,17 @@
</table>
</table>
</div>
</div>
<div>
<div
class=
"col-lg-10 col-lg-10 mx-auto container"
>
<div
class=
"col-lg-8 mx-auto button_container"
>
<form
method=
"get"
action=
"http://localhost:8000/recipes-create"
>
<form
method=
"get"
action=
"http://localhost:8000/recipes-create"
>
<button
type=
"submit
"
id=
"button_to_recipes_create"
>
Create New Recipe
</button>
<button
type=
"submit"
class=
"btn-block btn-outline-info
"
id=
"button_to_recipes_create"
>
Create New Recipe
</button>
</form>
</form>
</div>
</div>
<div
>
<div
class=
"col-lg-8 mx-auto button_container"
>
<form
method=
"get"
action=
"http://localhost:8000"
>
<form
method=
"get"
action=
"http://localhost:8000"
>
<button
type=
"submit
"
id=
"back_button"
>
Back to Home
</button>
<button
type=
"submit"
class=
"btn-block btn-outline-danger
"
id=
"back_button"
>
Back to Home
</button>
</form>
</form>
</div>
</div>
</div>
</body>
</body>
</html>
</html>
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