Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CS123-Canteeneo
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Willard Torres
CS123-Canteeneo
Commits
8bf76673
Commit
8bf76673
authored
Nov 10, 2016
by
Willard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename 'new-stall-form' id to 'form'
parent
1f9cf429
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
style.css
canteeneo/static/style.css
+1
-1
editdish.html
canteeneo/templates/editdish.html
+1
-1
editstall.html
canteeneo/templates/editstall.html
+1
-1
newdish.html
canteeneo/templates/newdish.html
+1
-1
newstall.html
canteeneo/templates/newstall.html
+1
-1
No files found.
canteeneo/static/style.css
View file @
8bf76673
...
@@ -119,7 +119,7 @@ button:active {
...
@@ -119,7 +119,7 @@ button:active {
width
:
750px
;
width
:
750px
;
}
}
#
new-stall-
form
{
#form
{
display
:
flex
;
display
:
flex
;
flex-direction
:
column
;
flex-direction
:
column
;
align-items
:
center
;
align-items
:
center
;
...
...
canteeneo/templates/editdish.html
View file @
8bf76673
{% extends "base.html" %} {% block title %}Edit Dish Info{% endblock %} {% block content %}
{% extends "base.html" %} {% block title %}Edit Dish Info{% endblock %} {% block content %}
<h1>
Dish Info
</h1>
<h1>
Dish Info
</h1>
<div
id=
"
new-stall-
form"
>
<div
id=
"form"
>
<form
action=
"{{ url_for('edit_dish', stall_id=stall.id, dish_id=dish.id) }}"
enctype=
"multipart/form-data"
method=
"POST"
>
<form
action=
"{{ url_for('edit_dish', stall_id=stall.id, dish_id=dish.id) }}"
enctype=
"multipart/form-data"
method=
"POST"
>
{{ form.csrf_token }}
{{ form.csrf_token }}
<div
class=
"form-input"
>
<div
class=
"form-input"
>
...
...
canteeneo/templates/editstall.html
View file @
8bf76673
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<h1>
Stall Info
</h1>
<h1>
Stall Info
</h1>
<form
action=
"{{ url_for('edit_stall', stall_id=stall.id) }}"
method=
"POST"
>
<form
action=
"{{ url_for('edit_stall', stall_id=stall.id) }}"
method=
"POST"
>
{{ form.csrf_token }}
{{ form.csrf_token }}
<div
id=
"
new-stall-
form"
>
<div
id=
"form"
>
<div
class=
"form-input"
>
<div
class=
"form-input"
>
<div
class=
"input-row"
>
<div
class=
"input-row"
>
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
...
...
canteeneo/templates/newdish.html
View file @
8bf76673
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<h1>
Dish Info
</h1>
<h1>
Dish Info
</h1>
<form
action=
"{{ url_for('new_dish', stall_id=stall.id) }}"
enctype=
"multipart/form-data"
method=
"POST"
>
<form
action=
"{{ url_for('new_dish', stall_id=stall.id) }}"
enctype=
"multipart/form-data"
method=
"POST"
>
{{ form.csrf_token }}
{{ form.csrf_token }}
<div
id=
"
new-stall-
form"
>
<div
id=
"form"
>
<div
class=
"form-input"
>
<div
class=
"form-input"
>
<div
class=
"input-row"
>
<div
class=
"input-row"
>
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
...
...
canteeneo/templates/newstall.html
View file @
8bf76673
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
<h1>
Stall Info
</h1>
<h1>
Stall Info
</h1>
<form
action=
"{{url_for('new_stall')}}"
method=
"POST"
>
<form
action=
"{{url_for('new_stall')}}"
method=
"POST"
>
{{ form.csrf_token }}
{{ form.csrf_token }}
<div
id=
"
new-stall-
form"
>
<div
id=
"form"
>
<div
class=
"form-input"
>
<div
class=
"form-input"
>
<div
class=
"input-row"
>
<div
class=
"input-row"
>
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
{{ form.name.label(class_="field-label") }} {{ form.name(class_="text-field") }}
...
...
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