24 lines
1003 B
Python
24 lines
1003 B
Python
from django.contrib.gis.db import models
|
|
from django.contrib.contenttypes.models import ContentType
|
|
from django.contrib.auth import get_user_model
|
|
|
|
User = get_user_model()
|
|
# Create your models here.
|
|
|
|
class StatsLog(models.Model):
|
|
"""
|
|
Keep track of interactions between user and product links
|
|
"""
|
|
|
|
model = models.ForeignKey(ContentType, on_delete=models.DO_NOTHING, null=True)
|
|
user = models.ForeignKey(User, on_delete=models.DO_NOTHING, null=True)
|
|
anonymous = models.BooleanField('Usuario no registrado', null=True)
|
|
ip_address = models.GenericIPAddressField('IP usuario', null=True, blank=True)
|
|
geo = models.PointField('Ubicación aproximada', null=True, blank=True )
|
|
contact = models.BooleanField('Empresa contactada', null=True)
|
|
shop = models.BooleanField('Redirigido por botón "Comprar"', null=True)
|
|
|
|
# internal
|
|
created = models.DateTimeField('date of creation', auto_now_add=True)
|
|
updated = models.DateTimeField('date last update', auto_now=True)
|