Metadata-Version: 2.0
Name: django-link
Version: 0.1.0
Summary: Modeled link objects which include linking to objects, views and static urls.
Home-page: http://github.com/praekelt/django-link
Author: Praekelt Consulting
Author-email: dev@praekelt.com
License: BSD
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Dist: django

Django Link
===========
**Modeled link objects which include linking to objects, views and static urls.**

.. image:: https://travis-ci.org/praekelt/django-link.svg?branch=develop
    :target: https://travis-ci.org/praekelt/django-link

.. image:: https://coveralls.io/repos/github/praekelt/django-link/badge.svg?branch=develop
    :target: https://coveralls.io/github/praekelt/django-link?branch=develop

.. contents:: Contents
    :depth: 5

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

#. Install or add ``django-link`` to your Python path.

#. Add ``link`` to your ``INSTALLED_APPS`` setting.

#. Add ``url(r'^link/', include("link.urls", namespace="link"))`` to your ``url patterns`` (only required if you intend on using the list/detail views)

Note: ``django-link`` relies on ``"django.contrib.contenttypes"`` framework so
this will need to be included in your ``INSTALLED_APPS`` setting.

Usage
-----

``django-link`` provides a model to add links to your projects. It provides a ``get_absolute_url``
method on the model which provides the url to either of these url types:

#. Standard url string.

#. Link to an ``object`` provided by the contenttype framework.

#. Link to a pre-existing view with configurable view params.

To use include the link object in the context of your view and include the following code:
``{{ link.get_absolute_url  }}``

Or use the inclusion tag which has been provided:
``{% render_link slug %}``

To exclude certain apps from the view name choice field add the namespace in your settings:
``LINK = {"excluded-viewname-choices": ["admin"]}``

License
-------

Please see the License requirements in the LICENSE file of this repository.
Authors
=======

Praekelt Consulting
-------------------
* Jonathan Bydendyk
Changelog
=========

0.1.0
-----
#. Initial release.


