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

Commit b4749a5

Browse files
authored
Merge pull request #21 from dipcode-software/feat/md-to-rst
Feat/md to rst
2 parents 13bde1c + 5db7535 commit b4749a5

File tree

3 files changed

+47
-32
lines changed

3 files changed

+47
-32
lines changed

README.md

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

README.rst

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
description='Django module to easily use generic views with ajax.',
1111
url='https://github.com/dipcode-software/django-ajax-partials/',
1212
author='Dipcode',
13-
author_email='info@dipcode.com',
13+
author_email='team@dipcode.com',
1414
classifiers=[
1515
'Environment :: Web Environment',
1616
'Framework :: Django',

0 commit comments

Comments
 (0)