DEV Community

Cover image for Jinja Template - Paper Dashboard
Sm0ke
Sm0ke

Posted on

Jinja Template - Paper Dashboard

This article presents a free Jinja2 template generated by the AppSeed platform using Paper Dashboard design, crafted by Creative-Tim, as input.
The project is basically a lightweight Flask app (no database or hard dependencies) that can be used for production-ready Python projects like Django/Flask dashboards.
Thanks for reading!


Jinja Template - Links


Jinja Template - Paper Dashboard, animated presentation.


What is Jinja2

Jinja2 is a Python template engine used to generate HTML or XML returned to the user via an HTTP response.

For those who have not been exposed to a templating language before, such languages essentially contain variables as well as some programming logic, which when evaluated (or rendered into HTML) are replaced with actual values.


Why do we need Jinja?

Sandboxed Execution - It provides a protected framework for automation of testing programs, whose behavior is unknown and must be investigated.

HTML Escaping Jinja 2 has a powerful automatic HTML Escaping, which helps to prevent Cross-site Scripting (XSS Attack). There are special characters like >,<,&, etc. which carry special meanings in the templates. So, if you want to use them as regular text in your documents then, replace them with entities. Not doing so might lead to XSS-Attack.

Template Inheritance - This feature helps us to generate new pages starting from a base template that we inherit a common structure.


How to get Jinja2

To start playing with it, just open a terminal and type:

$ pip install jinja2
Enter fullscreen mode Exit fullscreen mode

Jinja in action

Simple runtime replace

>>> from jinja2 import Template
>>> t = Template("Hello {{ token }}!")
>>> t.render(token="Jinja2")
u'Hello Jinja2!'
Enter fullscreen mode Exit fullscreen mode

The engine will replace the inner token with value Jinja2. This is quite useful when we use this block for different token values.

Jinja Links


Jinja Paper Dashboard

To use or compile the project we need at least Python3 properly installed in our workstation. If you're not sure about it, please open a terminal window and type python --version.

$ # Check Python version
$ python --version
Python 3.7.2 # <--- All good
Enter fullscreen mode Exit fullscreen mode

Using GIT to clone the source code is also recommended but optional. We can download the sources in ZIP format, no need to be familiar with a versioning system like GIT, in our case.


Codebase structure

< PROJECT ROOT >
   |
   |-- app/__init__.py
   |-- app/
   |    |-- static/
   |    |    |-- <css, JS, images>         # UI KIT assets
   |    |
   |    |-- templates/
   |    |    |
   |    |    |-- includes/                 # HTML chunks
   |    |    |    |
   |    |    |    |-- navigation.html      # Top bar
   |    |    |    |-- sidebar.html         # Left sidebar
   |    |    |    |-- scripts.html         # JS scripts
   |    |    |    |-- footer.html          # The common footer
   |    |    |
   |    |    |-- layouts/                  # App Layouts
   |    |    |    |
   |    |    |    |-- base.html            # Used by common pages 
   |    |    |    |-- base-fullscreen.html # Used by auth pages 
   |    |    |
   |    |  index.html                      # The default page
   |    |  login.html                      # Auth Login Page
   |    |  register.html                   # Registration Page
   |    |  page-404.html                   # Error 404 page 
   |    |  page-500.html                   # Error 500 page
   |    |    *.html                        # All other pages 
   |
   |-- requirements.txt
   |
   |-- run.py
   |
   |-- ********************************************
Enter fullscreen mode Exit fullscreen mode

How to compile the source

The following (simplified) snippet is extracted from the README file. For full set up (major OSs) please access the project sources and follow the build instructions related to your OS. In case of any issues, don't hesitate to ask anything in the comments or request for LIVE support via Discord.

$ # Clone the sources
$ git clone https://github.com/app-generator/jinja-template-paper-dashboard.git
$ cd jinja-template-paper-dashboard
$
$ # Virtualenv set up
$ virtualenv env
$ source env/bin/activate
$
$ # Install requirements
$ pip3 install -r requirements.txt
$
$ # Set the FLASK_APP environment variable
$ export FLASK_APP=run.py
$
$ # Run the Jinja Template
$ flask run
$
$ # Access the UI in browser: http://127.0.0.1:5000/
Enter fullscreen mode Exit fullscreen mode

If all goes well, we should see in the browser some nice pages, rendered by Jinja:


Jinja Template - Paper Dashboard, user profile.


UI Alerts & Notification

Jinja Template - Paper Dashboard, UI Alerts.


Google Maps

Jinja Template - Paper Dashboard, Google Maps.


Thank you!


Links & resources

Top comments (2)

Collapse
 
crearesite profile image
WebsiteMarket

A nice Ui Kit. Thanks

Collapse
 
sm0ke profile image
Sm0ke

10x for reading