Python DJANGO 3.0 issue with passing arguments to @register.simple_tag

91 Views Asked by At

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>
0

There are 0 best solutions below