========Glossary========.. glossary::concrete modelA non-abstract (:attr:`abstract=False<django.db.models.Options.abstract>`) model.fieldAn attribute on a :term:`model`; a given field usually maps directly toa single database column.See :doc:`/topics/db/models`.generic viewA higher-order :term:`view` function that provides an abstract/genericimplementation of a common idiom or pattern found in view development.See :doc:`/topics/class-based-views/index`.modelModels store your application's data.See :doc:`/topics/db/models`.MTV"Model-template-view"; a software pattern, similar in style to MVC, buta better description of the way Django does things.See :ref:`the FAQ entry <faq-mtv>`.MVC`Model-view-controller`__; a software pattern. Django :ref:`follows MVCto some extent <faq-mtv>`.__ https://en.wikipedia.org/wiki/Model-view-controllerprojectA Python package -- i.e. a directory of code -- that contains all thesettings for an instance of Django. This would include databaseconfiguration, Django-specific options and application-specificsettings.propertyAlso known as "managed attributes", and a feature of Python sinceversion 2.2. This is a neat way to implement attributes whose usageresembles attribute access, but whose implementation uses method calls.See :class:`property`.querysetAn object representing some set of rows to be fetched from the database.See :doc:`/topics/db/queries`.slugA short label for something, containing only letters, numbers,underscores or hyphens. They're generally used in URLs. Forexample, in a typical blog entry URL:.. parsed-literal::https://www.djangoproject.com/weblog/2008/apr/12/**spring**/the last bit (``spring``) is the slug.templateA chunk of text that acts as formatting for representing data. Atemplate helps to abstract the presentation of data from the dataitself.See :doc:`/topics/templates`.viewA function responsible for rendering a page.