Skip to content

Commit 7ac184d

Browse files
committed
update <img> usage
1 parent e84bcb6 commit 7ac184d

File tree

19 files changed

+65
-74
lines changed

19 files changed

+65
-74
lines changed

MANIFEST.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
prune docs
2+
prune images
3+
prune tests

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1+
<p align="center">
2+
<a href="https://django-data-wizard.wq.io">
3+
<img src="https://django-data-wizard.wq.io/images/django-data-wizard.svg" alt="Django Data Wizard">
4+
</a>
5+
</p>
6+
17
[**Django Data Wizard**][Django Data Wizard] is an interactive tool for mapping tabular data (e.g. Excel, CSV, XML, JSON) into a normalized database structure via [Django REST Framework] and [IterTable]. Django Data Wizard allows novice users to map spreadsheet columns to serializer fields (and cell values to foreign keys) on-the-fly during the import process. This reduces the need for preset spreadsheet formats, which most data import solutions require.
28

3-
<img width="32%"
4-
alt="Column Choices"
5-
src="https://django-data-wizard.wq.io/images/02-columns.png">
6-
<img width="32%"
7-
alt="Auto Import - Progress Bar"
8-
src="https://django-data-wizard.wq.io/images/08-data75.png">
9-
<img width="32%"
10-
alt="Imported Records"
11-
src="https://django-data-wizard.wq.io/images/10-records.png">
9+
[![Django Data Wizard Workflow](https://django-data-wizard.wq.io/images/screenshots/workflow.png)][workflow]
1210

1311
The Data Wizard supports straightforward one-to-one mappings from spreadsheet columns to database fields, as well as more complex scenarios like [natural keys] and [Entity-Attribute-Value] (or "wide") table mappings.
1412

@@ -62,11 +60,13 @@ Data Wizard is designed to allow users to iteratively refine their data import f
6260
[installation]: https://django-data-wizard.wq.io/overview/setup#installation
6361
[initial-configuration]: https://django-data-wizard.wq.io/overview/setup#initial-configuration
6462
[target-model-registration]: https://django-data-wizard.wq.io/overview/setup#target-model-registration
65-
[wq-setup]: https://django-data-wizard.wq.io/overview/wq-setup
63+
[wq-setup]: https://django-data-wizard.wq.io/guides/integrate-with-wq-framework
6664

6765
[sources]: https://django-data-wizard.wq.io/config/sources
6866
[serializers]: https://django-data-wizard.wq.io/config/serializers
6967
[columns]: https://django-data-wizard.wq.io/api/columns
7068
[ids]: https://django-data-wizard.wq.io/api/ids
7169
[data]: https://django-data-wizard.wq.io/api/data
7270
[models]: https://django-data-wizard.wq.io/config/models
71+
[tasks]: https://django-data-wizard.wq.io/config/tasks
72+
[backends]: https://django-data-wizard.wq.io/config/backends

docs/_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel="icon" type="image/svg+xml" sizes="any" href="/images/icons/django-data-wizard.svg">
88
<link rel="alternate icon" sizes="16x16 32x32 48x48" href="/favicon.ico">
99
<style>
10-
img[src$=".svg"] {
10+
img[src$=".svg"], img[src$=".png"] {
1111
display: block;
1212
margin-left: auto;
1313
margin-right: auto;

docs/api/admin.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,14 @@ Django Data wizard is designed to integrate seamlessly with the Django Admin UI,
99

1010
### FileSource & URLSource Admin
1111

12-
<img align="right" width=320 height=240
13-
alt="File Source Admin"
14-
src="https://django-data-wizard.wq.io/images/screenshots/A1-add-source.png">
15-
<img align="right" width=320 height=240
16-
alt="File Source Admin"
17-
src="https://django-data-wizard.wq.io/images/screenshots/A1-list-sources.png">
18-
12+
![File Source Admin - Add](../images/screenshots/A1-add-source.png)
13+
![File Source Admin - List](../images/screenshots/A1-list-sources.png)
14+
1915
If you use a custom source model instead of `data_wizard.sources`, be sure to register it with the admin as described in [sources documentation][sources].
2016

2117
### Identifier Admin
2218

23-
<img align="right" width=320 height=240
24-
alt="Identifier Admin"
25-
src="https://django-data-wizard.wq.io/images/screenshots/A3-identifiers.png">
19+
![Identifier Admin](../images/screenshots/A3-identifiers.png)
2620

2721
Django Data Wizard identifier mappings can be viewed and edited via the Django Admin.
2822

docs/api/auto.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2+
tag: auto
3+
tag_color: secondary
24
order: 2
35
---
46
5-
# auto
7+
# Auto Import
68

7-
<img align="right" width=320 height=240
8-
alt="Auto Import - Progress Bar"
9-
src="https://django-data-wizard.wq.io/images/screenshots/06-data25.png">
9+
![Auto Import - Progress Bar](../images/screenshots/06-data25.png)
1010

1111
#### `POST /datawizard/[id]/auto`
1212

docs/api/columns.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2+
tag: columns
3+
tag_color: secondary
24
order: 6
35
---
46

5-
# columns
7+
# Column Choices
68

7-
<img align="right" width=320 height=240
8-
alt="Column Choices"
9-
src="https://django-data-wizard.wq.io/images/screenshots/02-columns.png">
9+
![Column Choices](../images/screenshots/02-columns.png)
1010

1111
#### `GET /datawizard/[id]/columns`
1212

docs/api/create.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2+
tag: "/ (POST)"
3+
tag_color: primary
24
order: 1
35
---
46

57
# Create New Run
68

7-
<img align="right" width=320 height=240
8-
alt="Select Source & Start Import"
9-
src="https://django-data-wizard.wq.io/images/screenshots/A2-source-list.png">
9+
![Select Source & Start Import](../images/screenshots/A2-source-list.png)
1010

1111
#### `POST /datawizard/`
1212

docs/api/data.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2+
tag: data
3+
tag_color: secondary
24
order: 10
35
---
46

5-
# data
7+
# Import Data
68

7-
<img align="right" width=320 height=240
8-
alt="Auto Import - Progress Bar"
9-
src="https://django-data-wizard.wq.io/images/screenshots/08-data75.png">
9+
![Auto Import - Progress Bar](../images/screenshots/08-data75.png)
1010

1111
#### `POST /datawizard/[id]/data`
1212

docs/api/ids.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2+
tag: ids
3+
tag_color: secondary
24
order: 8
35
---
46

5-
# ids
7+
# Identifier Choices
68

7-
<img align="right" width=320 height=240
8-
alt="Identifier Choices"
9-
src="https://django-data-wizard.wq.io/images/screenshots/04-ids.png">
9+
![Identifier Choices](../images/screenshots/04-ids.png)
1010

1111
#### `GET /datawizard/[id]/ids`
1212

docs/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ wq_config:
77
icon_data: "M6,20A6,6 0 0,1 0,14C0,10.91 2.34,8.36 5.35,8.04C6.6,5.64 9.11,4 12,4C15.63,4 18.66,6.58 19.35,10C21.95,10.19 24,12.36 24,15A5,5 0 0,1 19,20H6M18.5,12H18A1,1 0 0,1 17,11V10A2,2 0 0,0 15,8H13.5V10H15V11A2,2 0 0,0 17,13A2,2 0 0,0 15,15V16H13.5V18H15A2,2 0 0,0 17,16V15A1,1 0 0,1 18,14H18.5V12M5.5,12V14H6A1,1 0 0,1 7,15V16A2,2 0 0,0 9,18H10.5V16H9V15A2,2 0 0,0 7,13A2,2 0 0,0 9,11V10H10.5V8H9A2,2 0 0,0 7,10V11A1,1 0 0,1 6,12H5.5Z"
88
---
99

10-
## API Documentation
10+
# API Documentation
1111

1212
Django Data Wizard is implemented as a series of views that can be accessed via the Django admin as well as via a JSON API.

0 commit comments

Comments
 (0)