Skip to content
This repository was archived by the owner on Dec 7, 2023. It is now read-only.

Commit d0674ac

Browse files
committed
changed from MD to RST
1 parent deee789 commit d0674ac

File tree

2 files changed

+44
-31
lines changed

2 files changed

+44
-31
lines changed

README.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

README.rst

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
Django Ajax views
2+
=================
3+
4+
|Build Status| |Codacy Badge| |Coverage Status|
5+
6+
Django module to easily use generic views with ajax.
7+
8+
Table of contents: \* `How to install`_; \* `License`_.
9+
10+
How to install
11+
--------------
12+
13+
To install the app run :
14+
15+
.. code:: shell
16+
17+
pip install django-ajax-views
18+
19+
or add it to the list of requirements of your project.
20+
21+
Then add ‘ajax\_views’ to your INSTALLED\_APPS.
22+
23+
.. code:: python
24+
25+
INSTALLED_APPS = [
26+
...
27+
'ajax_views',
28+
]
29+
30+
License
31+
-------
32+
33+
MIT license, see the LICENSE file. You can use obfuscator in open source
34+
projects and commercial products.
35+
36+
.. _How to install: #how-to-install
37+
.. _License: #license
38+
39+
.. |Build Status| image:: https://travis-ci.org/dipcode-software/django-ajax-views.svg?branch=master
40+
:target: https://travis-ci.org/dipcode-software/django-ajax-views
41+
.. |Codacy Badge| image:: https://api.codacy.com/project/badge/Grade/a64f03c2bd344561bc21e05c23aa04fb
42+
:target: https://www.codacy.com/app/srtabs/django-ajax-views?utm_source=github.com&utm_medium=referral&utm_content=dipcode-software/django-ajax-views&utm_campaign=Badge_Grade
43+
.. |Coverage Status| image:: https://coveralls.io/repos/github/dipcode-software/django-ajax-views/badge.svg?branch=master
44+
:target: https://coveralls.io/github/dipcode-software/django-ajax-views?branch=master

0 commit comments

Comments
 (0)