{% extends 'base.html'%} {% load staticfiles %} {% block content %} {% if tutorials %}

Latest in tutorialdb

{% for tutorial in tutorials %}
{{ tutorial.title }}
{% for tag in tutorial.tags.all %} 📌 {{ tag }}   {% endfor %}

{{ tutorial.category }}
{% endfor %}
{% else %}

search404
Ah! Sorry, No Results 🙀

{% endif %} {% endblock %}