This repository was archived by the owner on Dec 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +47
-32
lines changed Expand file tree Collapse file tree 3 files changed +47
-32
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 10
10
description = 'Django module to easily use generic views with ajax.' ,
11
11
url = 'https://github.com/dipcode-software/django-ajax-partials/' ,
12
12
author = 'Dipcode' ,
13
- author_email = 'info @dipcode.com' ,
13
+ author_email = 'team @dipcode.com' ,
14
14
classifiers = [
15
15
'Environment :: Web Environment' ,
16
16
'Framework :: Django' ,
You can’t perform that action at this time.
0 commit comments