Beispiel #1
0
def save(data, user):
    contact = Contact()

    if user.id is None:
        contact.contact_name = data['name']
        contact.contact_email = data['email']
    else:
        contact.author = user

    contact.subject = data['subject']
    contact.message = data['message']

    contact.save()
    return contact