Simple django application for generate burndown graphics.
Project description
Simple django application for generate burndown graphics.
Documentation
The full documentation is at https://burndown_for_what.readthedocs.org.
Quickstart
Install burndown_for_what:
pip install burndown_for_what
In you django project, configure settings.py:
INSTALLED_APPS = (
'grappelli',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'burndown_for_what',
)
And then yours urls.py:
from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^admin/', include(admin.site.urls)),
url(r'^grappelli/', include('grappelli.urls')),
url(r'^burndown/', include('burndown_for_what.urls')),
]
If you prefer, you can import the sample fixtures:
/manage.py loaddata initial_data --app=burndown_for_what
That’s it, run the project server:
(virtualenv)guilhermemaba test_scrum # ./manage.py runserver Performing system checks... System check identified no issues (0 silenced). October 26, 2015 - 22:25:16 Django version 1.8.5, using settings 'test_scrum.settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CONTROL-C.
You can access http://127.0.0.1:8000/burndown/sprint/1/
Features
TODO
History
0.1.0 (2015-10-02)
First release on PyPI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file burndown_for_what-0.1.2.tar.gz.
File metadata
- Download URL: burndown_for_what-0.1.2.tar.gz
- Upload date:
- Size: 9.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19e736f6bb284ef1e3b1266e2510259bc91e70fbe8e7d140570c8a0088712f98
|
|
| MD5 |
3101f056a4499778be298e6d64a657a2
|
|
| BLAKE2b-256 |
48b5c9835ebaf04313943863b3535690d1be0eb03d4d2636b8a4c438f238df35
|
File details
Details for the file burndown_for_what-0.1.2-py2.py3-none-any.whl.
File metadata
- Download URL: burndown_for_what-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f94e35b44926d807240ef9524baf907af176f4e00c64e5817ea5e04d153f76f
|
|
| MD5 |
93c7d8f7364021cf6552fb0148d6ea7d
|
|
| BLAKE2b-256 |
3f6e3830c64b694b6be5642724282dc19916791af681258f5af0933a9179a33d
|