Skip to content

Commit

Permalink
Merge pull request django-cms#43 from divio/issues/md_to_rst
Browse files Browse the repository at this point in the history
Move markdown to rst
  • Loading branch information
yakky committed May 8, 2015
2 parents f85ad25 + da78f77 commit 2dc4b81
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 42 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md → CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 2014-05-07 ###

----------
2014-05-07
----------

* Fix a bug in forms Fix a we refer field.widget.queryset instead field.queryset.
41 changes: 0 additions & 41 deletions README.md

This file was deleted.

46 changes: 46 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
|PyPI Version| |Build Status| |Coverage Status|


==============
djangocms-link
==============

A Link plugin for django CMS.


Installation
~~~~~~~~~~~~


This plugin requires :code:`django CMS` 3.0 or higher to be properly installed and
configured. If you have many pages it supports ajax loading for selecting a page.
To enable this install Django-Select2 3.1.2 or above.

* In your projects :code:`virtualenv`, run :code:`pip install djangocms-link`.
* Add :code:`djangocms_link'` to your :code:`INSTALLED_APPS` setting.
* If using Django 1.7 add :code:`'djangocms_link': 'djangocms_link.migrations_django',`
to :code:`MIGRATION_MODULES` (or define `:code:`MIGRATION_MODULES`` if it does not exists);
when django CMS 3.1 will be released, migrations for Django 1.7 will be moved
to the standard location and the south-style ones to :code:`south_migrations`.
* Run ``manage.py migrate djangocms_link``.

If you want to enable the ajax loading:

* In your projects :code:`virtualenv`, run :code:`pip install Django-Select2`.
* Add :code:`'django_select2` to your :code:`INSTALLED_APPS` settings.
* Add :code:`url(r'^select2/, include('django_select2.urls')),` to your main ``urls.py``.


Children
~~~~~~~~

This plugin supports child plugins. If you add an other plugin as a child it will take this content
instead of the link name as the content of the link.

Translations
~~~~~~~~~~~~

If you want to help translate the plugin please do it on transifex:

https://www.transifex.com/projects/p/django-cms/resource/djangocms-link/

0 comments on commit 2dc4b81

Please sign in to comment.