Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
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
edx
edx-platform
Commits
bdacc764
Commit
bdacc764
authored
Jun 27, 2013
by
Adam Palay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean up track/models
parent
03aee3ed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
common/djangoapps/track/models.py
+7
-5
No files found.
common/djangoapps/track/models.py
View file @
bdacc764
from
django.db
import
models
from
django.db
import
models
from
django.db
import
models
class
TrackingLog
(
models
.
Model
):
class
TrackingLog
(
models
.
Model
):
"""Defines the fields that are stored in the tracking log database"""
dtcreated
=
models
.
DateTimeField
(
'creation date'
,
auto_now_add
=
True
)
dtcreated
=
models
.
DateTimeField
(
'creation date'
,
auto_now_add
=
True
)
username
=
models
.
CharField
(
max_length
=
32
,
blank
=
True
)
username
=
models
.
CharField
(
max_length
=
32
,
blank
=
True
)
ip
=
models
.
CharField
(
max_length
=
32
,
blank
=
True
)
ip
=
models
.
CharField
(
max_length
=
32
,
blank
=
True
)
...
@@ -16,6 +15,9 @@ class TrackingLog(models.Model):
...
@@ -16,6 +15,9 @@ class TrackingLog(models.Model):
host
=
models
.
CharField
(
max_length
=
64
,
blank
=
True
)
host
=
models
.
CharField
(
max_length
=
64
,
blank
=
True
)
def
__unicode__
(
self
):
def
__unicode__
(
self
):
s
=
"[
%
s]
%
s@
%
s:
%
s |
%
s |
%
s |
%
s"
%
(
self
.
time
,
self
.
username
,
self
.
ip
,
self
.
event_source
,
fmt
=
(
self
.
event_type
,
self
.
page
,
self
.
event
)
u"[{self.time}] {self.username}@{self.ip}: "
return
s
u"{self.event_source}| {self.event_type} | "
u"{self.page} | {self.event}"
)
return
fmt
.
format
(
self
=
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