File: README.md

package info (click to toggle)
django-tables 2.7.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,752 kB
  • sloc: python: 7,120; makefile: 132; sh: 74
file content (17 lines) | stat: -rw-r--r-- 414 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Django-tables2 example project

This example project only supports the latest version of Django.

# To get it up and running:

```
git clone https://github.com/jieter/django-tables2.git

cd django-tables2/example
pip install -r requirements.txt
python manage.py migrate
python manage.py loaddata app/fixtures/initial_data.json
python manage.py runserver
```

Server should be live at http://127.0.0.1:8000/ now.