Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 955661
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:25:03+00:00 2026-05-16T00:25:03+00:00

I’m new to Google Apps and I’ve been messing around with the hello world

  • 0

I’m new to Google Apps and I’ve been messing around with the hello world app that is listed on the google app site. Once I finished the app, I decided to try to expand on it. The first thing I added was a feature to allow the filtering of the guestbook posts by the user that submitted them.

All I have changed/added is simply a handler to the WSGIApplication and a new class for this handler. The model is the same, I’ll post for reference:

class Greeting(db.Model):
    author = db.UserProperty()
    content = db.StringProperty(multiline = True)
    date = db.DateTimeProperty(auto_now_add=True)

Using the Django template I changed the line that displays the authors nickname from:

<b>{{ greeting.author.nickname }}</b> wrote:

to:

<a href="/authorposts/{{ greeting.author.user_id }}">
  {{ greeting.author.nickname }}
</a></b> wrote:

The issue I’m having is that inside my python code I cannot access “greeting.author.nickname”, or any of the other properties, such as “user_id”. However they are accessible from the Django template, as the code I listed above for the template works and correctly creates a link to the author as well as displaying the nickname.

I am using URL Mapping based on the authors (a UserProperty) property “user_id”. I am trying to find a way that I can filter the datastore using the user_id as the criteria. I’ve tried directly applying a filter to the query, I’ve tried pulling all the records and then iterating through them and use an If…Else clause.

I know the value is store into the datastore, because the Django template shows it, what do I have to do to use it as filter criteria?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T00:25:04+00:00Added an answer on May 16, 2026 at 12:25 am

    When querying the Greeting model, you cannot filter on fields within Greeting.author (e.g., greeting.author.nickname). In SQL, this would be done by doing a join on the Greeting and User tables. However, in GAE you can only query properties directly included on the model you are querying.

    Since author is a db.UserProperty, you can filter by user like this:

    # fetch up to 10 greetings by the current user
    user = users.get_current_user()
    results = Greeting.all().filter('author =', user).fetch(10)
    

    To filter on other fields within author, you would need to denormalize your Greeting model – i.e., add copies of fields in author which you want to be able to filter Greeting on. For example, if you wanted to filter by author.nickname, you would add an author_nickname field to your Greeting model (and keep its value up to date with author.nickname):

    class Greeting(db.Model):
        author = db.UserProperty()
        author_nickname = db.StringProperty() # denormalization (copy of author.nickname)
        content = db.StringProperty(multiline = True)
        date = db.DateTimeProperty(auto_now_add=True)
    

    If you add this sort of denormalization to your model, it might be helpful to use Nick Johnson’s aetycoon library to make author_nickname update whenever author is updated (just so you don’t have to manually enforce that relationship).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I have a jquery bug and I've been looking for hours now, I can't
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I've got a string that has curly quotes in it. I'd like to replace
Specifically, suppose I start with the string string =hello \'i am \' me And
I want use html5's new tag to play a wav file (currently only supported

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.