hashtags should have sample tweets

Issue #21 resolved
Ali Hürriyetoglu repo owner created an issue

The hashtag selection page does not have sample tweets. We should retrieve from the database and present 5 tweets for each hashtag.

Comments (2)

  1. Aslıhan ARSLAN

    I added this code to views.py

    for t in  model.objects(Q(pk__in = docids) &  Q(source__username__not__in = userlist) & (Q(text__icontains=value+ " ") | Q(text__iendswith=value)))[:5]:
    
  2. Log in to comment