2008-03-18 22:54:39 +08:00
{% extends "admin/base_site.html" %}
{% load i18n %}
2011-09-21 02:30:06 +08:00
{% block breadcrumbs %}
< div class = "breadcrumbs" >
< a href = "{% url 'admin:index' %}" > {% trans 'Home' %}< / a >
2013-11-21 15:48:29 +08:00
› {% trans 'Documentation' %}
2011-09-21 02:30:06 +08:00
< / div >
{% endblock %}
2013-06-01 18:06:36 +08:00
{% block title %}{% trans 'Documentation' %}{% endblock %}
2008-03-18 22:54:39 +08:00
{% block content %}
2013-06-01 18:06:36 +08:00
< h1 > {% trans 'Documentation' %}< / h1 >
2008-03-18 22:54:39 +08:00
< div id = "content-main" >
2013-06-02 12:32:29 +08:00
< h3 > < a href = "tags/" > {% trans 'Tags' %}< / a > < / h3 >
2013-06-01 18:06:36 +08:00
< p > {% trans 'List of all the template tags and their functions.' %}< / p >
2008-03-18 22:54:39 +08:00
2013-06-02 12:32:29 +08:00
< h3 > < a href = "filters/" > {% trans 'Filters' %}< / a > < / h3 >
2013-06-01 18:06:36 +08:00
< p > {% trans 'Filters are actions which can be applied to variables in a template to alter the output.' %}< / p >
2008-03-18 22:54:39 +08:00
2013-06-02 12:32:29 +08:00
< h3 > < a href = "models/" > {% trans 'Models' %}< / a > < / h3 >
2013-06-01 18:06:36 +08:00
< p > {% trans 'Models are descriptions of all the objects in the system and their associated fields. Each model has a list of fields which can be accessed as template variables' %}.< / p >
2008-03-18 22:54:39 +08:00
2013-06-02 12:32:29 +08:00
< h3 > < a href = "views/" > {% trans 'Views' %}< / a > < / h3 >
2013-06-01 18:06:36 +08:00
< p > {% trans 'Each page on the public site is generated by a view. The view defines which template is used to generate the page and which objects are available to that template.' %}< / p >
2008-03-18 22:54:39 +08:00
2013-06-02 12:32:29 +08:00
< h3 > < a href = "bookmarklets/" > {% trans 'Bookmarklets' %}< / a > < / h3 >
2013-06-01 18:06:36 +08:00
< p > {% trans 'Tools for your browser to quickly access admin functionality.' %}< / p >
2008-03-18 22:54:39 +08:00
< / div >
{% endblock %}
2008-07-19 07:54:34 +08:00