Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/runekaagaard/django-poeditor-com-field
https://github.com/runekaagaard/django-poeditor-com-field
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/runekaagaard/django-poeditor-com-field
- Owner: runekaagaard
- License: mit
- Created: 2017-02-07T13:11:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-26T20:27:30.000Z (about 2 years ago)
- Last Synced: 2024-11-07T11:48:11.448Z (2 months ago)
- Language: Python
- Size: 39.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
Awesome Lists containing this project
README
=============================
Django poeditor.com Model Field
=============================.. image:: https://badge.fury.io/py/django-poeditor-com-field.svg
:target: https://badge.fury.io/py/django-poeditor-com-field.. image:: https://travis-ci.org/runekaagaard/django-poeditor-com-field.svg?branch=master
:target: https://travis-ci.org/runekaagaard/django-poeditor-com-field.. image:: https://codecov.io/gh/runekaagaard/django-poeditor-com-field/branch/master/graph/badge.svg
:target: https://codecov.io/gh/runekaagaard/django-poeditor-com-fieldTranslate your model data with poeditor.com.
Documentation
-------------The full documentation is at https://django-poeditor-com-field.readthedocs.io.
Quickstart
----------Install Django poeditor.com Model Field::
pip install django-poeditor-com-field
Add it to your `INSTALLED_APPS`:
.. code-block:: python
INSTALLED_APPS = (
...
'poeditor_com_field.apps.PoeditorComFieldConfig',
...
)Add Django poeditor.com Model Field's URL patterns:
.. code-block:: python
from poeditor_com_field import urls as poeditor_com_field_urls
urlpatterns = [
...
url(r'^', include(poeditor_com_field_urls)),
...
]Features
--------* TODO
Running Tests
-------------Does the code actually work?
::
source /bin/activate
(myenv) $ pip install tox
(myenv) $ toxCredits
-------Tools used in rendering this package:
* Cookiecutter_
* `cookiecutter-djangopackage`_.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage