Fixed missing import

This commit is contained in:
Armin Ronacher 2016-01-03 10:03:01 +01:00
parent 6fabb41ed1
commit 4cf3fd2e5b
1 changed files with 2 additions and 1 deletions

View File

@ -180,7 +180,8 @@ markup that appears on multiple pages.
```html+jinja
{% extends "layout.html" %}
{% from "macros/projects.html" import render_category_nav %}
{% from "macros/projects.html" import render_category_nav,
render_project_list %}
{% block title %}Project Category {{ this.name }}{% endblock %}
{% block body %}
<h1>Project Category {{ this.name }}</h1>