Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: Shmele on May 22nd, 2012  |  syntax: Python  |  size: 0.96 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1.     ip_address           = models.IPAddressField(blank = True, null = True)
  2.  
  3.     keyword              = models.CharField(
  4.                            _("Keyword"),
  5.                            max_length = 255,
  6.                            blank = True,
  7.                            null = True
  8.                            )
  9.  
  10.     referrer             = models.CharField(
  11.                            _("Referer"),
  12.                            max_length = 255,
  13.                            blank = True,
  14.                            null = True
  15.                            )
  16.  
  17.     user_agent           = models.CharField(
  18.                            max_length = 255,
  19.                            blank = True,
  20.                            null = True
  21.                            )
  22.     redirect_back_to_url = models.CharField(
  23.                            max_length = 255,
  24.                            blank = True,
  25.                            null = True
  26.                            )