Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
JARVIS
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
Jacob Dylan D. Vitug
JARVIS
Commits
e77320ed
Commit
e77320ed
authored
Apr 04, 2023
by
Jacob Dylan D. Vitug
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+ create_emp_profile css html. updated views url
parent
bac50970
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
338 additions
and
2 deletions
+338
-2
create_emp_profile.css
...stemTOPC/EmployeeProdDB/static/css/create_emp_profile.css
+158
-0
create_emp_profile.html
...eeProdDB/templates/EmployeeProdDB/create_emp_profile.html
+174
-0
urls.py
IPSystemTOPC/EmployeeProdDB/urls.py
+2
-1
views.py
IPSystemTOPC/EmployeeProdDB/views.py
+4
-1
No files found.
IPSystemTOPC/EmployeeProdDB/static/css/create_emp_profile.css
0 → 100644
View file @
e77320ed
body
{
font-family
:
Helvetica
;
}
.centercont
{
margin
:
auto
;
display
:
flex
;
justify-content
:
center
;
}
h2
.bold
{
margin-top
:
30px
;
font-weight
:
bold
;
}
input
[
type
=
"text"
],
input
[
type
=
"tel"
],
input
[
type
=
"email"
],
input
[
type
=
"password"
],
input
[
type
=
"date"
],
select
,
textarea
{
display
:
block
;
width
:
100%
;
padding
:
0.375rem
0.75rem
;
font-size
:
1rem
;
font-weight
:
400
;
line-height
:
1
;
color
:
#212529
;
background-color
:
#fff
;
background-clip
:
padding-box
;
border
:
1px
solid
#ced4da
;
border-radius
:
0.25rem
;
transition
:
border-color
0.15s
ease-in-out
,
box-shadow
0.15s
ease-in-out
;
}
input
[
type
=
"file"
]
{
width
:
100%
;
padding
:
0.375rem
0.75rem
;
font-size
:
0.8rem
;
font-weight
:
400
;
line-height
:
1
;
border-radius
:
0.25rem
;
margin-left
:
25px
;
}
input
[
type
=
"radio"
]
{
padding
:
0.375rem
0.75rem
;
font-size
:
0.8rem
;
border-radius
:
0.25rem
;
margin-left
:
25px
;
margin-right
:
5px
;
transform
:
scale
(
1.5
);
}
.top-cont
{
margin
:
30px
50px
0px
;
}
.profile-info-cont
{
margin-top
:
30px
;
}
.profile-info-form
{
border
:
none
;
}
/* button{
border-radius: 4px;
} */
.input-dimension
input
,
select
{
border
:
1px
solid
black
;
border-radius
:
4px
;
width
:
60%
;
}
.label-row
{
width
:
100%
;
display
:
flex
;
justify-content
:
space-between
;
}
.label-row
input
,
select
{
display
:
flex
;
width
:
260px
;
}
.input-row
{
width
:
100%
;
display
:
flex
;
width
:
100%
;
justify-content
:
space-evenly
;
}
.text-input-grouping
{
display
:
flex
;
flex-direction
:
column
;
}
.box
{
width
:
260px
;
background-color
:
white
;
height
:
60px
;
}
.sex-input
{
width
:
260px
;
display
:
flex
;
}
.sex-input
input
{
display
:
flex
;
}
.sex-input
label
{
display
:
block
;
margin
:
0
auto
;
width
:
150px
;
}
.sex-input
input
[
type
=
"radio"
]
{
line-height
:
30px
;
vertical-align
:
bottom
;
width
:
15px
;
margin-left
:
15px
;
}
.button-cancel
button
{
border-radius
:
4px
;
border
:
1px
solid
black
;
padding
:
5px
10px
;
background-color
:
white
;
width
:
max-content
;
width
:
200px
;
margin-right
:
15px
;
}
.button-save
button
{
border-radius
:
4px
;
border
:
1px
solid
white
;
padding
:
5px
10px
;
background-color
:
#00802B
;
color
:
white
;
width
:
max-content
;
width
:
200px
;
}
.profile-options
{
display
:
flex
;
justify-content
:
end
;
}
.bottom-cont
{
margin-right
:
15px
;
margin-top
:
50px
;
}
\ No newline at end of file
IPSystemTOPC/EmployeeProdDB/templates/EmployeeProdDB/create_emp_profile.html
0 → 100644
View file @
e77320ed
{% extends 'EmployeeProdDB/base.html' %} {% load static %} {% block content %}
<html
lang=
"en"
>
<head>
<link
rel=
"stylesheet"
href=
"{% static 'css/style.css' %}"
/>
<link
rel=
"stylesheet"
href=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity=
"sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin=
"anonymous"
/>
<link
rel=
"stylesheet"
href=
"{% static 'css/create_emp_profile.css' %}"
/>
</head>
<body>
<div
class=
"top-cont"
>
<div
class=
"header"
>
<h2
class=
"bold"
>
Add Profile
</h2>
</div>
<main
class=
"profile-info-cont"
>
<form
method=
"POST"
action=
""
class=
"profile-info-form input-dimension"
>
{% csrf_token %}
<div>
<div
class=
"row g-0"
>
<div
class=
""
>
<div
class=
"label-row"
>
<div
class=
"text-input-grouping"
>
<label
for=
"first-name"
class=
""
>
First Name:
</label>
<div
class=
""
>
<input
type=
"text"
class=
""
name=
"first-name"
required
/>
</div>
</div>
<div
class=
"text-input-grouping"
>
<label
for=
"address"
class=
""
>
Address:
</label>
<div
class=
"input-row"
>
<input
type=
"text"
name=
"address"
required
/>
</div>
</div>
<div
class=
"text-input-grouping"
>
<label
for=
"phonenum"
class=
""
>
Phone Number:
</label>
<div
class=
"input-row"
>
<input
type=
"tel"
name=
"phone-number"
required
/>
</div>
</div>
</div>
<div
class=
"label-row"
>
<div
class=
"text-input-grouping"
>
<label
for=
"mid-name"
class=
""
>
Middle Name:
</label>
<div
class=
""
>
<input
type=
"text"
name=
"middle-name"
required
/>
</div>
</div>
<div
class=
"text-input-grouping"
>
<label
for=
"bday"
>
Birthday:
</label>
<div
class=
""
>
<input
type=
"date"
name=
"birthday"
/>
</div>
</div>
<div
class=
"text-input-grouping"
>
<label
for=
"emerg_num"
>
Emergency Contact:
</label>
<div
class=
"tex"
>
<input
type=
"tel"
name=
"emerg-number"
required
/>
</div>
</div>
</div>
<div
class=
"label-row"
>
<div
class=
"text-input-grouping"
>
<label
for=
"last-name"
>
Last Name:
</label>
<div
class=
""
>
<input
type=
"text"
name=
"last-name"
required
/>
</div>
</div>
<div
class=
"text-input-grouping"
>
<label
for=
"email"
class=
""
>
Email:
</label>
<div
class=
""
>
<input
type=
"email"
name=
"email"
required
/>
</div>
</div>
<div
class=
"text-input-grouping"
>
<label
for=
"position"
class=
""
>
Position:
</label>
<div
class=
""
>
<select
name=
"position"
>
<option
value=
""
disabled
selected
>
Select a position
</option>
<option
value=
"packager"
>
Packager
</option>
<option
value=
"handler"
>
Handler
</option>
<option
value=
"cutter"
>
Cutter
</option>
</select>
</div>
</div>
</div>
<div
class=
"label-row"
>
<div
class=
"text-input-grouping"
id=
"sex"
>
<label
for=
"sex"
class=
""
>
Sex:
</label>
<div
class=
"sex-input"
>
<input
type=
"radio"
id=
"male"
name=
"gender"
value=
"male"
required
/>
<label
for=
"male"
>
Male
</label>
<input
type=
"radio"
id=
"female"
name=
"gender"
value=
"female"
required
/>
<label
for=
"female"
>
Female
</label>
</div>
</div>
<div
class=
"text-input-grouping"
>
<label
for=
"id-num"
class=
""
>
ID Number:
</label>
<div
class=
""
>
<input
type=
"text"
name=
"id-num"
required
/>
</div>
</div>
<div
class=
"text-input-grouping"
>
<div
class=
"box"
></div>
</div>
</div>
</div>
</div>
<div
class=
"bottom-cont"
>
<div
class=
"col-md-8"
></div>
<div
class=
"profile-options"
>
<div
class=
"button-cancel"
>
<button
name=
"Save"
type=
"submit"
>
Cancel
</button>
</div>
<div
class=
"button-save"
>
<button
name=
"Save"
type=
"submit"
>
Save Changes
</button>
</div>
</div>
</div>
<div
class=
"row g-0"
style=
"margin-top: 5px"
>
<div
class=
"col-md-10"
></div>
<div
class=
"col-md-2"
></div>
</div>
</div>
</form>
</main>
</div>
<script
src=
"https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js"
integrity=
"sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin=
"anonymous"
></script>
</body>
{% endblock %}
</html>
IPSystemTOPC/EmployeeProdDB/urls.py
View file @
e77320ed
...
...
@@ -10,6 +10,7 @@ urlpatterns = [
path
(
'upload_csv/'
,
views
.
upload_csv
,
name
=
'upload_csv'
),
path
(
'show_csv_data/'
,
views
.
show_csv_data
,
name
=
'show_csv_data'
),
path
(
'signup/'
,
views
.
signup
,
name
=
'signup'
),
path
(
'emp_record/'
,
views
.
emp_record
,
name
=
'emp_record'
)
path
(
'emp_record/'
,
views
.
emp_record
,
name
=
'emp_record'
),
path
(
'create_profile/'
,
views
.
create_emp_profile
,
name
=
'create_emp_profile'
)
]
\ No newline at end of file
IPSystemTOPC/EmployeeProdDB/views.py
View file @
e77320ed
...
...
@@ -178,4 +178,7 @@ def show_csv_data(request):
def
emp_record
(
request
):
return
(
render
(
request
,
'EmployeeProdDB/emp_record.html'
))
\ No newline at end of file
return
(
render
(
request
,
'EmployeeProdDB/emp_record.html'
))
def
create_emp_profile
(
request
):
return
(
render
(
request
,
'EmployeeProdDB/create_emp_profile.html'
))
\ No newline at end of file
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