Skip to content

Instantly share code, notes, and snippets.

View mannyanebi's full-sized avatar
🔥
Stay Awesome!

Emmanuel Anebi mannyanebi

🔥
Stay Awesome!
View GitHub Profile
@mannyanebi
mannyanebi / django-template-concatenate-string.html
Last active February 3, 2022 15:54
Django Template: How to concatenate strings and django-template variables
{% with "shop/"|add:shop_name|add:"/base.html" as template %}
{% include template %}
{% endwith %}
{% with "Create "|add:org_name|add:"'s Website" as website_form_name %}
{% include 'backend/snippets/form.html' with form_name=website_form_name %}
{% endwith %}