Metadata-Version: 2.1
Name: django-real-content
Version: 0.1.12
Summary: Template tags to quickly show real content instead of lorem ipsum.
Home-page: https://github.com/mislavcimpersak/django-real-content
Author: Mislav Cimperšak
Author-email: mislav.cimpersak@gmail.com
License: MIT
Download-URL: https://github.com/mislavcimpersak/django-real-content/tarball/0.1.12
Keywords: django real content lorem ipsum
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.6
Classifier: Framework :: Django :: 1.7
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Framework :: Django
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: Django (>=1.6)
Requires-Dist: beautifulsoup4 (>=4.3)

===================
django-real-content
===================

.. image:: https://travis-ci.org/mislavcimpersak/django-real-content.svg?branch=master
    :target: https://travis-ci.org/mislavcimpersak/django-real-content

.. image:: https://coveralls.io/repos/github/mislavcimpersak/django-real-content/badge.svg?branch=master
    :target: https://coveralls.io/github/mislavcimpersak/django-real-content?branch=master


Template tags to quickly show real content instead of misleading `lorem
ipsum <http://www.smashingmagazine.com/2010/01/06/lorem-ipsum-killing-designs/>`__.
Useful to get a sense of real world content with fun local unicode
characters.

Works on Python >= 2.7 (including Python >= 3.5) and Django >= 1.6.

Documentation
-------------
`Read the Docs <http://django-real-content.readthedocs.org/>`__

Installation
------------

::

    pip install django-real-content

In your project's settings file add ``real_content`` to your INSTALLED\_APPS setting and ``DRC_LANGUAGE`` setting (if none is set, english will be used).

::

    INSTALLED_APPS = (
        # ...
        'real_content',
    )

    DRC_LANGUAGE = 'hr'

Languages currently supported out of the box
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

- cz, de, en, es, fr, gr, hr, it, nl, pl, rs, ru, si

Usage:
------

Explaind in more detail on `read the docs <http://django-real-content.readthedocs.org/>`__.

Load django-real-content in your template.

::

    {% load drc %}

random title
~~~~~~~~~~~~

show random title with h3 tag

::

    {% drc_title 'h3' %}


random paragraphs
~~~~~~~~~~~~~~~~~

show 3 random paragraphs

::

    {% drc_paragraphs 3 %}


random image
~~~~~~~~~~~~~

show random image from lorempixel.com which dimensions are 420x360

::

    {% drc_image 420 360 %}


random number
~~~~~~~~~~~~~

show a random number between 1 and 100

::

    {% drc_number 1 100 %}


Content sources
---------------

Various localised news portals and local wikipedia in some cases.

TODO
----

-  add more languages in the package as standard (fi, pt...)


