Skip to main content

Django materialize css support.

Project description

This library was created to make django work with materializecss.

Setup

Install the library.

# project/settings.py

INSTALLED_APPS = [
    "materialize_nav",
    ...
]

Setup Context Processors

Materialize nav comes with a context processor to use some settings to change the default base styling.

# Context Processor to work with settings
TEMPLATES = [
    {
        ...
        'OPTIONS': {
            'context_processors': [
                ...
                'materialize_nav.context_processors.get_context',
            ],
        },
    },
]

Alternative way to get the standard context for views

# views.py

from materialize_nav.context_processors import get_context


def show_page(request):
    # Get the context with the style settings
    context = get_context(site_name='demo', title='Basic Content', primary_color='teal')

    context["object"] = "MyObject"
    return render(request, "my_page.html", context)

Style

The base template can be used by extending the materialize base nav.

{% extends "materialize_nav/base.html" %}


{% block nav_items %}
    <li><a href="sass.html">Sass</a></li>
    <li><a href="badges.html">Components</a></li>
    <li><a href="collapsible.html">JavaScript</a></li>
{% endblock %}


{% block sidenav_items %}
    {# One option is to override "materialize_nav/sidenav_items.html" #}
    {# OR use "block sidenav_items" and list your items or include another template. #}
    {# This makes the sidenav items reusable in other templates #}
    {% include "my_app/sidenav_items.html" %}
{% endblock %}


{% block contents %}
<div class="row">
    <div class="col s12 m9 l10">
        <p>My Content goes here</p>
    </div>
</div>
{% endblock %}

Styling controls

Materialize nav comes with several style options used in the template context variables listed below.

  • MATERIALIZE_SITE_NAME

  • MATERIALIZE_TITLE

  • HIDE_CONTAINER

  • SHOW_SIDENAV

  • FIXED_SIDENAV

  • PRIMARY_COLOR

  • SECONDARY_COLOR

  • PRIMARY_COLOR_LIGHT

  • PRIMARY_COLOR_DARK

  • SUCCESS_COLOR

  • ERROR_COLOR

  • LINK_COLOR

If you went through the Setup Context Processors step then you can modify several settings to change the default style. This is an alternative to manually providing all of the template context variables.

# settings.py

MATERIALIZE_SITE_NAME = None  # Display this name in the navbar as the main name
MATERIALIZE_TITLE = None  # This is the page title displayed as the browser tab name

MATERIALIZE_HIDE_CONTAINER = False  # If True make the page take up the full width
MATERIALIZE_SHOW_SIDENAV = True  # If True have a menu button available to open up the side navigation menu
MATERIALIZE_FIXED_SIDENAV = False  # If True and SHOW_SIDENAV make the side navigation menu always showing

MATERIALIZE_PRIMARY_COLOR = 'materialize-red lighten-2'
MATERIALIZE_SECONDARY_COLOR = 'teal'
MATERIALIZE_PRIMARY_COLOR_LIGHT = '#e51c23'
MATERIALIZE_PRIMARY_COLOR_DARK = None
MATERIALIZE_SUCCESS_COLOR = None
MATERIALIZE_ERROR_COLOR = None
MATERIALIZE_LINK_COLOR = None

USER_THUMBNAIL_PROPERTY = 'profile.thumbnail'  # For user.profile.thumbnail
USER_BACKGROUND_PROPERTY = 'profile.background'  # For user.profile.background
# USER_THUMBNAIL = 'accounts/default_user.png'  # This is a default image
# USER_BACKGROUND_IMAGE = 'accounts/default_user.png'  # This is a default image

Styling process

There are two methods for changing the default coloring for Materialize CSS.

  • The old method is to use the templatetag include_dynamic_css which would use the django template system to generate a style tag with the proper css classes overridden.

  • The new method only requires using the base.html. It includes the materialize_nav/materialize_nav_colors.js file which uses javascript to create a style tag to edit the proper css classes. This method should require less work from django to change the style.

Goals

My original goal was to create an easier way to use materialize css with django. When I first started forms did not format properly and I thought navigation was a pain. Unfortunately, my original approach made this library a strong coupled to your django app which was a terrible design decision. I am trying to simplify this library to help style django apps quickly and without a lot of settings.

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

django_materialize_nav-1.2.0.tar.gz (23.7 MB view details)

Uploaded Source

Built Distribution

django_materialize_nav-1.2.0-py3-none-any.whl (23.8 MB view details)

Uploaded Python 3

File details

Details for the file django_materialize_nav-1.2.0.tar.gz.

File metadata

  • Download URL: django_materialize_nav-1.2.0.tar.gz
  • Upload date:
  • Size: 23.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for django_materialize_nav-1.2.0.tar.gz
Algorithm Hash digest
SHA256 6dfec1733aafda4ea013fa601aed1fd55922e10ae7510c05ae7e855de8c310a3
MD5 f132201b891ba048e6681d5e3e633c67
BLAKE2b-256 11cb72307038a2e83d6312da5f7d8d177e5d64ee161935dd6c630c5cabc91225

See more details on using hashes here.

File details

Details for the file django_materialize_nav-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: django_materialize_nav-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 23.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.8.8

File hashes

Hashes for django_materialize_nav-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2f55a03f1ea4c119ac185bfa881d67cf585b27afded7cb8ca181d6356b3049d0
MD5 348985ce5c2dad8070428c5bbecefebe
BLAKE2b-256 33f6b4cde4df05f4b61d5204cd206c61d4512289bcf53f87df938b18b270ebde

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