How I can sort rundom the list 'articles_list' when I get it from db?
def article_theme(request, articleblock_id=2):
return render_to_response('article_theme.html',
{"ArticleBlock_name": ArticleBlock.objects.get(id=articleblock_id),
'articles_list': Articles.objects.filter
(articles_articleblock_id=articleblock_id)})