Django : Is it impossible to static tag into block tag?
No, it is not impossible. Try including {% load staticfiles%}
in the same html file, rather than attempting to inherit it from some base.html
.
1.) in settings.py add A TUPLE :
STATIFILES_DIR = ( os.path.join(BASE_DIR,'assets') , )
2.) in urls.py add :
from django.contrib.staticfiles.urls import staticfiles.urlpatterns
urlpatterns += staticfile_urlpatterns()
3.) in the html file where you are putting the "link rel='stylesheet' .." , just add at the top :
{% load static from staticfiles %}
and then use :
<link rel="stylesheet" href="{% static 'assets/css' %}"
Just add {% load static %}
to the top of your template after the {% extends 'app/base.html' %}
.