Django {{MEDIA_URL}} em branco @DEPRECATED

Eu bati minha cabeça por isso nas últimas horas. Não consigo exibir {{MEDIA_URL}}

em settings.py

..
MEDIA_URL = 'http://10.10.0.106/ame/'
..
TEMPLATE_CONTEXT_PROCESSORS = (
  "django.contrib.auth.context_processors.auth",
  "django.core.context_processors.media",
)
..

na minha opinião eu tenho

from django.shortcuts import render_to_response, get_object_or_404
from ame.Question.models import Question

def latest(request):
  Question_latest_ten = Question.objects.all().order_by('pub_date')[:10]
  p = get_object_or_404(Question_latest_ten)
  return render_to_response('Question/latest.html', {'latest': p})

então eu tenho um base.html e Question / latest.html

{% extends 'base.html' %}
<img class="hl" src="{{ MEDIA_URL }}/images/avatar.jpg" /></a>

mas MEDIA_URL aparece em branco, pensei que é assim que deve funcionar, mas talvez eu esteja errado.

Atualizar A versão mais recente corrige esses problemas.

questionAnswers(5)

yourAnswerToTheQuestion