Попробовать еще ацетоном или жидкостью для снятия лака
def albums(request, cat_id):
show_albums = Album.objects.all().filter(cat=cat_id)
random = Photo.objects.filter(alb__cat_id=cat_id).order_by('?')[: 1]
categir = Categories.objects.all()
context = {'albom': show_albums,'categor': categir,'thumb':random}
return render(request,' adst/albums.html',context)
from django.db.models import Count
interests_ids = u.interests.values_list('id', flat=True) # select ids of incoming user interests
suggestions = User.objects
.exclude(id=u.id) # exclude current user
.filter(is_verified=True) # filter only verified users
.filter(interests__id__in=interests_ids) # select users based on common interests
.annotate(interests_count=Count('interests')) # count numbers of interests for each user after filtering
.order_by('-interests_count') # order users by max common interests
urlpatterns = patterns('',
url(r'^game/(?P<id>.+)$', 'myapp.views.game_view', name='game_view'),
def game_view(request, id):
# тут что-то делаем
От него наследуется:тот файл не вставляется в content.html
{% extends '
{{ p.title }}
Дата создания: {{ p.created_at }}. Создал:
.....
{% block post %}
{% for p in posts %}
{% include "p.html" %}
{% endfor%}
{% endblock %}