Django app voor site-sectie bepalen op aanvraag.
installatie
& Nbsp; 1. Section.context_processors.section toevoegen aan TEMPLATE_CONTEXT_PROCESSORS in uw instellingen bestand:
& Nbsp; TEMPLATE_CONTEXT_PROCESSORS = (
& Nbsp; "django.contrib.auth.context_processors.auth",
& Nbsp; "django.core.context_processors.debug",
& Nbsp; "django.core.context_processors.i18n",
& Nbsp; "django.core.context_processors.media",
& Nbsp; "django.contrib.messages.context_processors.messages",
& Nbsp; "section.context_processors.section")
& Nbsp; 2. Voeg SECTIONS waarde aan uw instellingenbestand in de vorm:
& Nbsp; # Tuple woordenboeken gebruikt voor het URL-patroon namen aan siteonderdelen passen.
& Nbsp; # Bijvoorbeeld: ({'naam': '
& Nbsp; SECTIONS = (
& Nbsp; {'naam': 'thuis', 'matching_pattern_names': ('thuis',)},
& Nbsp;)
Gebruik
Als u gebruik maakt van generieke uitzicht je nu automagisch een deel variabele toegevoegd aan context en beschikbaar in uw sjablonen.
Anders hebben een kijkje op RequestContext objecten en hoe ze te gebruiken:
http://docs.djangoproject.com/en/dev/ref/templates/api/#id1
Requirements:
- Python
- Django
Reacties niet gevonden