इस बिंदु पर आप जो खोज रहे हैं उसे नीचे ट्रिम कर दें (और अपने टेम्पलेट में कुछ सिंटैक्स को सही करते हुए), एक सूची समझ का प्रयास करें:
from django.shortcuts import render
def gettheAudit(request):
theURLs = [x for x in mycol.aggregate([{"$unwind":"$tags"},{'$match': {'tags.tag.name':'A A',}},{'$project': {'url': 1, 'AR': 1, 'tags.tag.name': 1, 'tags.variables': 1, '_id': 0}},])]
return render(request, 'templates/a.html', {'theURLs': theURLs})
टेम्प्लेट/a.html:
<ul>
<li><h1>URLSSSS</h1></li>
{% for theURL in theURLs %}
<li>{{ theURL }}</li>
{% endfor %}
</ul>