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
3a42dde1
Commit
3a42dde1
authored
Dec 07, 2019
by
Ahmad Satryaji Aulia
Browse files
Merge branch '1606885864-239' into 'master'
1606885864 239 See merge request
!279
parents
4feaae2c
519af3f4
Pipeline
#26884
passed with stages
in 13 minutes and 56 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
core/models/accounts.py
View file @
3a42dde1
...
...
@@ -109,8 +109,8 @@ class Student(models.Model):
validators
=
[
validate_document_file_extension
])
latest_work
=
models
.
CharField
(
max_length
=
100
,
blank
=
True
,
null
=
True
)
latest_work_desc
=
models
.
TextField
(
blank
=
True
,
null
=
True
)
github_url
=
models
.
URLField
(
max_length
=
200
,
blank
=
True
,
null
=
True
)
gitlab_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
,
validators
=
[
RegexValidator
(
r
'gitlab.com'
)]
)
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}$'
)])
job_seeking_status
=
models
.
CharField
(
max_length
=
30
,
blank
=
True
,
null
=
True
)
...
...
Daya Adianto
🐈
@addianto
mentioned in commit
80a08718
·
Feb 17, 2020
mentioned in commit
80a08718
mentioned in commit 80a08718a87bc42bcad487a764e2db4b9f9bef97
Toggle commit list
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