Skip to main content

The simple, elegant Django Mako library

Project description

django-mako Tests

The simple, elegant Django Mako library Used base engine to create a template rendering class to be used like Django's TemplateView class. To understand how to use it, read Custom backends on django.

  • The current implementation assumes all system templates are Mako Template. Thus, when you start a new template make sure that the template language is Mako not Django.
  • If you want to use another template backend like Django Template Backend, just pass using='Django' in your FBV or add template_engine = 'mako' in your CBV.

Enjoy! This shouldn't be tricky any more.

Installation

To install the package as a requirement in your python environemnt just do

pip install djangomako

Using the library

After installing the package in your python environment, navigate to your project's settings.py and add the following lines in the TEMPLATES variable

TEMPLATES = [
    # ...
    {
        'BACKEND': 'djangomako.backends.MakoBackend',
        'NAME': 'mako',
        'DIRS': [
            os.path.join(BASE_DIR, 'templates'),
        ],
    },
    # ...
]
  • The BACKEND value is from this library.
  • The NAME is simply the template identifier.
  • In DIRS you're gonna include all the directories that have mako templates.
  • The order matters here, so if you want your project to support only mako, you just need to remove the Django entry from the templates, while if you need mako as a fallback only, then you need to put it under the Django Template entry.

Template Variables

I passed some template variables to the context if the request objects exists:

  1. CSRF_TOKEN and CSRF_INPUT
    ${ csrf_input }  ## {% csrf_token %} in Django templates.
    ${ csrf_token }  ## {{ csrf_token }} in Django templates.
    
  2. To access the request:
    ${ request }
    
  3. To include a static file url:
    ${ static('image.png') }  ## {% static "image.png" %} in Django templates.
    
  4. To reverse a url in the template:
    ${ url('home') }  ## {% url 'home' %} in Django templates.
    

Detailed Examples?

An example of how to use this library in Class-Based view and Function-Based Views is inside niceapp app.

Errors?

To test how this engine handles errors, just run theserver and go to this path /mako.

Detailed Explanation?

You can find a detailed explanation of how I implemented this library in my blog post named Integrating third-party templates' libraries with Django.

License

The MIT License (MIT) Copyright (c) 2017-2019 Ahmed Jazzar me@ahmedjazzar.com

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

djangomako-1.3.2.tar.gz (6.8 kB view details)

Uploaded Source

Built Distribution

djangomako-1.3.2-py3-none-any.whl (7.6 kB view details)

Uploaded Python 3

File details

Details for the file djangomako-1.3.2.tar.gz.

File metadata

  • Download URL: djangomako-1.3.2.tar.gz
  • Upload date:
  • Size: 6.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for djangomako-1.3.2.tar.gz
Algorithm Hash digest
SHA256 123071c30b0f89836412ee968ff5f0b1788cc555961b3d25f1546458cecc2732
MD5 63959d983a14e892d7639df610bf91b1
BLAKE2b-256 4ddb582ec954da74aeb268b2161c2f1b875e5354d4d4084f00c675a0761bf955

See more details on using hashes here.

File details

Details for the file djangomako-1.3.2-py3-none-any.whl.

File metadata

  • Download URL: djangomako-1.3.2-py3-none-any.whl
  • Upload date:
  • Size: 7.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.14

File hashes

Hashes for djangomako-1.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 a9d544d52eace7171ebf27d94215546862d54e6f6297f86a5579d4b40a1594ef
MD5 a666da87d1734cb880a6bee787764866
BLAKE2b-256 e6970c79b368bbacbb4707f78ab6b7e0a1bb1039ef53d4198a4e44a6db6b0902

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page