diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-29 08:23:56 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-29 08:23:56 -0500 |
commit | dc9cbb3888ea2e285fcf2d8368382a688f03268a (patch) | |
tree | 56ee25b977bd4b69e4c8f95741cf5f04c2e9b49b | |
parent | 0bc036209dab581ad60b97231473c832fca9e875 (diff) | |
download | mediagoblin-dc9cbb3888ea2e285fcf2d8368382a688f03268a.tar.lz mediagoblin-dc9cbb3888ea2e285fcf2d8368382a688f03268a.tar.xz mediagoblin-dc9cbb3888ea2e285fcf2d8368382a688f03268a.zip |
Only show submit button if user is active
-rw-r--r-- | mediagoblin/templates/mediagoblin/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/templates/mediagoblin/base.html b/mediagoblin/templates/mediagoblin/base.html index 0dbd6d6f..0a037d26 100644 --- a/mediagoblin/templates/mediagoblin/base.html +++ b/mediagoblin/templates/mediagoblin/base.html @@ -45,7 +45,7 @@ alt="Mediagoblin logo" /> </a> {% endblock %} - {% if request.user %} + {% if request.user and request.user['status'] == 'active' %} <a class="header_submit" href="{{ request.urlgen('mediagoblin.submit.start') }}"> Submit media |