Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_django unchained
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
1
Merge Requests
1
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
Jose Emmanuel B. Laurel
widget_django unchained
Commits
ab4e56f6
Commit
ab4e56f6
authored
Mar 30, 2022
by
Jose Emmanuel B. Laurel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed id_name to id_num
parent
56ff407b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
1 deletion
+1
-1
db.sqlite3
widget_django_unchained/db.sqlite3
+0
-0
models.cpython-39.pyc
...ango_unchained/homepage/__pycache__/models.cpython-39.pyc
+0
-0
views.cpython-39.pyc
...jango_unchained/homepage/__pycache__/views.cpython-39.pyc
+0
-0
models.py
widget_django_unchained/homepage/models.py
+1
-1
No files found.
widget_django_unchained/db.sqlite3
View file @
ab4e56f6
No preview for this file type
widget_django_unchained/homepage/__pycache__/models.cpython-39.pyc
View file @
ab4e56f6
No preview for this file type
widget_django_unchained/homepage/__pycache__/views.cpython-39.pyc
View file @
ab4e56f6
No preview for this file type
widget_django_unchained/homepage/models.py
View file @
ab4e56f6
...
...
@@ -5,7 +5,7 @@ class WidgetUser(models.Model):
first_name
=
models
.
CharField
(
max_length
=
50
,
default
=
'first_name'
)
middle_name
=
models
.
CharField
(
max_length
=
50
,
default
=
'middle_name'
)
last_name
=
models
.
CharField
(
max_length
=
50
,
default
=
'last_name'
)
id_n
ame
=
models
.
CharField
(
max_length
=
7
,
default
=
'1234567'
)
id_n
um
=
models
.
CharField
(
max_length
=
7
,
default
=
'1234567'
)
email
=
models
.
CharField
(
max_length
=
50
,
default
=
'someemail@gmail.com'
)
def
__str__
(
self
):
...
...
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