Fakultas Ilmu Komputer UI
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
PMPL
Class Project
Kape
Commits
519af3f4
Commit
519af3f4
authored
Dec 07, 2019
by
Ahmad Satryaji Aulia
Browse files
1606885864 239
parent
4feaae2c
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/models/accounts.py
View file @
519af3f4
...
@@ -109,8 +109,8 @@ class Student(models.Model):
...
@@ -109,8 +109,8 @@ class Student(models.Model):
validators
=
[
validate_document_file_extension
])
validators
=
[
validate_document_file_extension
])
latest_work
=
models
.
CharField
(
max_length
=
100
,
blank
=
True
,
null
=
True
)
latest_work
=
models
.
CharField
(
max_length
=
100
,
blank
=
True
,
null
=
True
)
latest_work_desc
=
models
.
TextField
(
blank
=
True
,
null
=
True
)
latest_work_desc
=
models
.
TextField
(
blank
=
True
,
null
=
True
)
github_url
=
models
.
URLField
(
max_length
=
200
,
blank
=
True
,
null
=
True
)
github_url
=
models
.
URLField
(
max_length
=
200
,
blank
=
True
,
null
=
True
,
validators
=
[
RegexValidator
(
r
'github.com'
)]
)
gitlab_url
=
models
.
URLField
(
max_length
=
200
,
blank
=
True
,
null
=
True
)
gitlab_url
=
models
.
URLField
(
max_length
=
200
,
blank
=
True
,
null
=
True
,
validators
=
[
RegexValidator
(
r
'gitlab.com'
)]
)
intro
=
models
.
CharField
(
max_length
=
50
,
blank
=
True
,
null
=
True
)
intro
=
models
.
CharField
(
max_length
=
50
,
blank
=
True
,
null
=
True
)
expected_salary
=
models
.
CharField
(
max_length
=
10
,
blank
=
True
,
null
=
True
,
validators
=
[
RegexValidator
(
r
'^\d{0,10}$'
)])
expected_salary
=
models
.
CharField
(
max_length
=
10
,
blank
=
True
,
null
=
True
,
validators
=
[
RegexValidator
(
r
'^\d{0,10}$'
)])
job_seeking_status
=
models
.
CharField
(
max_length
=
30
,
blank
=
True
,
null
=
True
)
job_seeking_status
=
models
.
CharField
(
max_length
=
30
,
blank
=
True
,
null
=
True
)
...
...
Write
Preview
Supports
Markdown
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