I have the following tree:
- apps
- templatetags
- pyos.py
- templates
- index.html
In pyos.py I have the following code:
import os
from django import template
register = template.Library()
@register.simple_tag
def listdir(path):
d = os.listdir
return d(path)
def test():
pass
Then in index.html, inside templates I have the following already working:
{%extends 'principal.html'%}
<div>
{%load pyos%}
{%listdir 'C:/'%}
</div>
I need to pass some static path as argument, is there any way to do something like that?
<div>
{%load pyos%}
{%load static%}
{%listdir {%static 'img/imagesFolder%}%}
</div>