Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/misaelnieto/lfs-conekta

Conekta payment processor plugin for LFS
https://github.com/misaelnieto/lfs-conekta

Last synced: about 1 month ago
JSON representation

Conekta payment processor plugin for LFS

Awesome Lists containing this project

README

        

What is this?
=============

This the payment processor for `LFS (Lightning Fast Shop) `_
that adds support for `Conekta `_ a Mexican Payment Gateway.

Installation
============

Install eggg
------------

If you use pip:

.. code:: bash

pip install lfs-conecta

If you use the buildout installer for LFS 0.7.x add ``lfs-conecta`` to your list
of eggs and re-run buildout.

.. code:: ini

[django]
recipe = djangorecipe
eggs =
[...]
lfs-conekta

Install to django
-----------------

Add ``lfs-conekta`` to your list of ``INSTALLED_APPS`` in ``settings.py`` and
run ``syncdb``.

.. code:: python

INSTALLED_APPS = (
'django.contrib.contenttypes', # contenttypes framework is required

# ...

'django-settings',
'lfs_conekta'

# ...
)

With plain django:

.. code:: bash

python manage.py syncdb

With Buildout

.. code:: bash

bin/django syncdb

Integration with the management interface
-----------------------------------------

LFS Conekta can be configured with the management interface, but needs some
integration steps from you.

* Add ``lfs-conekta`` to management panel to **Shop -> Settings** page as new tab:
copy lfs/templates/manage/shop/shop.html to your theme and modify it by adding:
{% load lfs_conekta_tags %}
( ... )



(...)

{{ portlets|safe }}

**{% conekta_management shop %}**