ó
ÃlUdc           @   s\   d  d l  m Z d  d l m Z d  d l m Z m Z m Z m	 Z	 d e f d „  ƒ  YZ
 d S(   iÿÿÿÿ(   t   Model(   t   ugettext_lazy(   t   CreatingUserFieldt   CreatingSessionKeyFieldt   LastUserFieldt   LastSessionKeyFieldt   AuthStampedModelc           B   s{   e  Z d  Z e d e d ƒ d d ƒ Z e e d ƒ ƒ Z e d e d ƒ d d ƒ Z	 e
 e d ƒ ƒ Z d	 d d
 „  ƒ  YZ RS(   sT   
	An abstract base class model that provides auth and session information
	fields.
	t   verbose_names
   created byt   related_names#   created_%(app_label)s_%(class)s_sets   created with session keys   modified bys$   modified_%(app_label)s_%(class)s_sets   modified with session keyt   Metac           B   s   e  Z e Z RS(    (   t   __name__t
   __module__t   Truet   abstract(    (    (    sG   /var/www/html/phendo-backend/phendo_python/audit_log/models/__init__.pyR	      s   (    (   R
   R   t   __doc__R   t   _t
   created_byR   t   created_with_session_keyR   t   modified_byR   t   modified_with_session_keyR	   (    (    (    sG   /var/www/html/phendo-backend/phendo_python/audit_log/models/__init__.pyR      s   N(   t   django.db.modelsR    t   django.utils.translationR   R   t   audit_log.models.fieldsR   R   R   R   R   (    (    (    sG   /var/www/html/phendo-backend/phendo_python/audit_log/models/__init__.pyt   <module>   s   "