djula icon indicating copy to clipboard operation
djula copied to clipboard

Common Lisp port of the Django templating language

Results 9 djula issues
Sort by recently updated
recently updated
newest added

If you would: ``` (render #P"foods.html" (list :foods '((:id 10 :nombre "Pizza" :origin "Italy") (:id 32 :nombre "Sushi" :origin "Japan") (:id 92 :nombre "Taco" :origin "Mexico")) ``` How would you...

Hi, The development on CL-SLICE is stopped in favor of SELECT > This repository is archived. You may find an updated version of these libraries at https://github.com/Lisp-Stat/select

Filters don't work with multiple arguments? Either allow filters to take arguments, or prepare all of them to work with "with". Looks like neither is the case at the moment....

` Template Compilation Error Unhandled memory fault at #x0.. In #. Date/time: 2017-08-08-08:00An unhandled error condition has been signalled: Unhandled memory fault at #x0. Backtrace for: # 0: (TRIVIAL-BACKTRACE:PRINT-BACKTRACE-TO-STREAM #)...

I would be very nice if block inheritence maintained the indentation level and newlines. For example: ``` {# base.html #} {% block content %}{% endblock content %} ``` ``` {#...

Currently the [iterables](https://github.com/mmontone/djula/blob/master/src/tags.lisp#L275) are a 'closed abstraction'. An iterator protocol would allow the user to 'teach' the for tag how to iterate different the objects. I propose something similar to...

enhancement

Would that addition be welcomed?

Filters arguments parsing is too limited at the moment. For instance, in: ``` (djula::parse-filter-string "my-filter: x y z") ``` x, y and z variables are not parsed appropriately. This makes...

Provide an empty tag for use with for loops, this would be useful if a loop failed to start. For example ``` {% for x in y %} {{ x...