From 92952d9f75b1cb0cfe82fec6da929e3da71aad9d Mon Sep 17 00:00:00 2001 From: Swen Kooij Date: Fri, 21 Oct 2016 13:43:16 +0300 Subject: [PATCH] Added Scrutinizer/TravisCI badges to README --- README.rst | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 10bf842..5c31da3 100644 --- a/README.rst +++ b/README.rst @@ -1,13 +1,16 @@ django-localized-fields ======================= -``django-localized-fields`` is an implementation of a field class for Django models that allows the field's value to be set in multiple languages. It does this by utilizing the ``hstore`` type (PostgreSQL specific), which is available as ``models.HStoreField`` in Django 1.10. +.. image:: https://scrutinizer-ci.com/g/SectorLabs/django-localized-fields/badges/quality-score.png?b=master + :target: https://scrutinizer-ci.com/g/SectorLabs/django-localized-fields/ -* [Usage](#usage) - * [Basic usage](#basic-usage) - * [Constraints](#constraints) - * [Other fields](#other-fields) -* [Installation](#installation) +.. image:: https://scrutinizer-ci.com/g/SectorLabs/django-localized-fields/badges/coverage.png?b=master + :target: https://scrutinizer-ci.com/g/SectorLabs/django-localized-fields/ + +.. image:: https://travis-ci.com/SectorLabs/django-localized-fields.svg?token=sFgxhDFpypxkMcvhRoSz&branch=master + :target: https://travis-ci.com/SectorLabs/django-localized-fields + +``django-localized-fields`` is an implementation of a field class for Django models that allows the field's value to be set in multiple languages. It does this by utilizing the ``hstore`` type (PostgreSQL specific), which is available as ``models.HStoreField`` in Django 1.10. Usage -----