Skip to content

Commit

Permalink
Refactored dashboard to move logo and splash links out into base. Now…
Browse files Browse the repository at this point in the history
… need to write the API, press, and privacy statement.
  • Loading branch information
samuelclay committed Apr 2, 2011
1 parent 310ed7f commit 50a0cd9
Show file tree
Hide file tree
Showing 5 changed files with 126 additions and 191 deletions.
3 changes: 1 addition & 2 deletions apps/reader/views.py
@@ -1,6 +1,5 @@
import datetime
import time
import random
import re
from django.shortcuts import render_to_response, get_object_or_404
from django.contrib.auth.decorators import login_required
Expand Down Expand Up @@ -69,7 +68,7 @@ def index(request):
recommended_feeds = RecommendedFeed.objects.filter(is_public=True).select_related('feed')
# recommended_feed_feedback = RecommendedFeedUserFeedback.objects.filter(recommendation=recommended_feed)

howitworks_page = random.randint(0, 5)
howitworks_page = 0 # random.randint(0, 5)
return render_to_response('reader/feeds.xhtml', {
'user_profile': user.profile,
'login_form': login_form,
Expand Down

0 comments on commit 50a0cd9

Please sign in to comment.