Skip to main content

A Django module to use the template system of the University of Cambridge: Project light

Project description

This app allows you to include the University of Cambridge’s Project Light theme to your Django apps in a very easy way.

Usage

Yo only need to add to your settings.py this application.

INSTALLED_APPS = (
    ...
    'ucamprojectlight',
    ...
)

Create a template that extends ucamprojectlight.html and customize it using the corresponding blocks.

You can create a global template for your project with common customizations to all your other templates. Therefore you will only need to extend from this global common template instead of writting all the customizations in each template.

It is worth to mention that even if you create a global customized template and extend this template in all your other templates, you still can modify the blocks that you modified in your global template in all the temples that extend the global one.

{% extends 'ucamprojectlight.html' %}

Customization using blocks

  • campl_block_head: This block rewrites the whole head tag of the template.

  • head_title: The full name of the site that will be shown in the browser toolbar.

  • additional_head: This block is reserverd to load extra css or js in case you are using extensions to the base Project Light app template.

  • app_head: If your application is using their own javascript and stylesheets, load them using this block.

  • campl_page_header: This block rewrites the whole page header of the template.

  • all_breadcrumbs: This block rewrites the whole breadcrumb section in case you do not want to include it in your app.

  • static_breadcrumbs: This block includes the fixed breadcrumbs of your application (those that will be always shown independent from the page/view). The default is:

    <li>
    <a href="http://www.cam.ac.uk/">University of Cambridge</a>
    </li>
    <li>
    <a href="http://www.cam.ac.uk/about-the-university/">My Django app</a>
    </li>
  • site_name: The full name of the site to show it in the header of the page.

  • search_bar: Overwrite this block in case you do not want a search box in your app.

  • search_action: action propierty of the form tag of the search box. Shown inside search_bar block.

  • campl_tabs_header: Overwrite this block in case that your app does not use tabs neither have a subtitle in the page header.

  • subtitle_div: Overwrite this block in case you do not want to show a subtitle in the header. The subtitle is only shown if the campl_tabs_header has not been overwritten.

  • subtitle: A subtitle to be shown below the site_name in the page header. Shown inside subtitle_div block.

  • tabs: Overwrite this block in case that your app does not use tabs.

  • page_content: In this block the page content should be written if you do not want to use the contant_column blocks.

  • content_column_1..content_column_12: Project light is responsive and uses a 12 columns grid system (like twitter bootstrap). The django-ucamprojectlight offers 12 blocks in case you want to use up to 12 different columns. If you just want to use n columns because columns are wider than 1 unit, you can use the n blocks wanted.

  • local_footer: This block rewrites the whole page footer. Half of the footer is ocuppied by the variable blurb, the other half is divided into two, footer1 and footer2.

  • blurb: The text shown in the footer. It uses the first half of the width of the footer.

  • footer1: Usually used for the Help link.

  • footer2: Usually used for the Privacy & cookie policy link.

  • global_footer: This block contains the whole global footer.

  • campl_foot_js: A section a the end of the body tag to load lazy javascript files.

Tabs

If your Project Light page uses tabs as part of its subheading (like the “search” page) define them in a python file, along with their destinations, and then add this python file to TEMPLATE_CONTEXT_PROCESSORS in your settings.py

def tabs(request):
    tabs = {}
    tabs[0] = dict(name="Main",url='index')
    tabs[1] = dict(name="Example",url='example')
    tabs[2] = dict(name="Test",url='test')
    return {'tabs': tabs}
TEMPLATE_CONTEXT_PROCESSORS = TEMPLATE_CONTEXT_PROCESSORS + ('myapp.ucamprojectlight_context_processors.tabs',)

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-ucamprojectlight-1.2.1.tar.gz (177.2 kB view details)

Uploaded Source

Built Distribution

django_ucamprojectlight-1.2.1-py3-none-any.whl (214.9 kB view details)

Uploaded Python 3

File details

Details for the file django-ucamprojectlight-1.2.1.tar.gz.

File metadata

File hashes

Hashes for django-ucamprojectlight-1.2.1.tar.gz
Algorithm Hash digest
SHA256 b472b5f7e2f23324b9021d91436ce86a440a1918951af684d5bce347470ffbc3
MD5 0521a4da83959a59f246fa035bf206c9
BLAKE2b-256 2bdd5a898c5dec84f4423ac1fe6c1ac6b7537f470ee08a3a9cf562e5698c1f6e

See more details on using hashes here.

File details

Details for the file django_ucamprojectlight-1.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_ucamprojectlight-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b42b4fb3264fe4cfbdfc1b6f5f5cda4688c1f980eb25cb5312313a7dc5d14475
MD5 156da3b639b9a392f84413f4219e84c8
BLAKE2b-256 e3769481a30804923d2171cf4f415eb90ceb65f51809193f108a76a954093e7d

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