2006-05-02 03:31:56 +02:00
|
|
|
"""
|
2014-09-24 07:13:13 +02:00
|
|
|
Transactions
|
2006-05-02 03:31:56 +02:00
|
|
|
|
|
|
|
Django handles transactions in three different ways. The default is to commit
|
|
|
|
each transaction upon a write, but you can decorate a function to get
|
|
|
|
commit-on-success behavior. Alternatively, you can manage the transaction
|
|
|
|
manually.
|
|
|
|
"""
|
2024-01-26 12:45:07 +01:00
|
|
|
|
2011-07-13 11:35:51 +02:00
|
|
|
from django.db import models
|
2006-05-02 03:31:56 +02:00
|
|
|
|
2011-10-13 20:04:12 +02:00
|
|
|
|
2006-05-02 03:31:56 +02:00
|
|
|
class Reporter(models.Model):
|
2007-08-05 07:14:46 +02:00
|
|
|
first_name = models.CharField(max_length=30)
|
|
|
|
last_name = models.CharField(max_length=30)
|
2006-05-02 03:31:56 +02:00
|
|
|
email = models.EmailField()
|
|
|
|
|
2009-06-29 14:29:48 +02:00
|
|
|
class Meta:
|
|
|
|
ordering = ("first_name", "last_name")
|
|
|
|
|
2012-08-12 12:32:08 +02:00
|
|
|
def __str__(self):
|
2013-03-04 22:17:35 +01:00
|
|
|
return ("%s %s" % (self.first_name, self.last_name)).strip()
|