Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/misaelnieto/lfs-conekta
- Owner: misaelnieto
- License: mit
- Created: 2014-03-11T01:29:15.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-03-14T02:57:52.000Z (almost 11 years ago)
- Last Synced: 2023-03-10T21:02:26.559Z (almost 2 years ago)
- Language: Python
- Size: 117 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- License: LICENSE.txt
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-conektaInstall 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 %}**