Python google.appengine.ext.db.UserProperty() Examples

The following are 5 code examples of google.appengine.ext.db.UserProperty(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module google.appengine.ext.db , or try the search function .
Example #1
Source File: db.py    From jbox with MIT License 5 votes vote down vote up
def convert_UserProperty(model, prop, kwargs):
    """Returns a form field for a ``db.UserProperty``."""
    return None 
Example #2
Source File: db.py    From RSSNewsGAE with Apache License 2.0 5 votes vote down vote up
def convert_UserProperty(model, prop, kwargs):
    """Returns a form field for a ``db.UserProperty``."""
    return None 
Example #3
Source File: db.py    From googleapps-message-recall with Apache License 2.0 5 votes vote down vote up
def convert_UserProperty(model, prop, kwargs):
    """Returns a form field for a ``db.UserProperty``."""
    return None 
Example #4
Source File: djangoforms.py    From python-compat-runtime with Apache License 2.0 5 votes vote down vote up
def get_form_field(self, **kwargs):
    """Return a Django form field appropriate for a User property.

    This defaults to a forms.EmailField instance, except if auto_current_user or
    auto_current_user_add is set, in which case None is returned, as such
    'auto' fields should not be rendered as part of the form.
    """
    if self.auto_current_user or self.auto_current_user_add:
      return None
    defaults = {'form_class': forms.EmailField}
    defaults.update(kwargs)
    return super(UserProperty, self).get_form_field(**defaults) 
Example #5
Source File: djangoforms.py    From python-compat-runtime with Apache License 2.0 5 votes vote down vote up
def get_value_for_form(self, instance):
    """Extract the property value from the instance for use in a form.

    This returns the email address of the User.
    """
    value = super(UserProperty, self).get_value_for_form(instance)
    if not value:
      return None
    return value.email()