diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-11-16 17:53:46 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-11-16 17:53:46 -0600 |
commit | 76c6c806caec7af20a3fe11c04bb783baacc3934 (patch) | |
tree | 393df346aeebc977ca7435a4e3b75c86863c98bd | |
parent | 8bb3eb185ab14e8e8f4fc7b3df9eac4e1438d030 (diff) | |
download | mediagoblin-76c6c806caec7af20a3fe11c04bb783baacc3934.tar.lz mediagoblin-76c6c806caec7af20a3fe11c04bb783baacc3934.tar.xz mediagoblin-76c6c806caec7af20a3fe11c04bb783baacc3934.zip |
Accidentally had user['profile'] where it shoulda been user['bio']
-rw-r--r-- | mediagoblin/templates/mediagoblin/user_pages/user.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/templates/mediagoblin/user_pages/user.html b/mediagoblin/templates/mediagoblin/user_pages/user.html index c5beeaaa..6d938262 100644 --- a/mediagoblin/templates/mediagoblin/user_pages/user.html +++ b/mediagoblin/templates/mediagoblin/user_pages/user.html @@ -78,7 +78,7 @@ {%- trans username=user.username %}{{ username }}'s profile{% endtrans -%} </h1> - {% if not user['url'] and not user['profile'] %} + {% if not user['url'] and not user['bio'] %} {% if request.user['_id'] == user['_id'] %} <div class="grid_6 alpha empty_space"> <p> |