This is an automated email from the ASF dual-hosted git repository. machristie pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/airavata-cookiecutter-django-app.git
commit 947efa76661cda2c88d00f390af882feebc6f5af Author: Marcus Christie <[email protected]> AuthorDate: Fri Jun 4 14:01:28 2021 -0400 Add missing 'load static' --- .../templates/{{cookiecutter.project_slug}}/home.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/{{cookiecutter.project_slug}}/home.html b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/{{cookiecutter.project_slug}}/home.html index 0913ce1..5c705b2 100644 --- a/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/{{cookiecutter.project_slug}}/home.html +++ b/{{cookiecutter.project_slug}}/{{cookiecutter.project_slug}}/templates/{{cookiecutter.project_slug}}/home.html @@ -1,5 +1,7 @@ {% extends 'base.html' %} +{% load static %} + {% block content %} <div class="main-content-wrapper"> <main class="main-content">
