django_cv

https://badge.fury.io/py/django_cv.svg https://travis-ci.org/axeliodiaz/django_cv.svg?branch=master https://codecov.io/gh/axeliodiaz/django_cv/branch/master/graph/badge.svg

A Django app to create a single resume or curriculum vitae

Documentation

The full documentation is at https://django_cv.readthedocs.io.

Quickstart

Install django_cv:

pip install django_cv

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'django_cv',
    ...
)

Add django_cv’s URL patterns:

from django_cv import urls as django_cv_urls


urlpatterns = [
    ...
    url(r'^', include(django_cv_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package: