Metadata-Version: 2.1
Name: erscipcard
Version: 1.18.1
Summary: Erscipcard is a Django app to create personeli card.
Home-page: https://github.com/epg900/erscipcard.git
Author: epg
Author-email: epg900@gmail.com
License: GNU GENERAL PUBLIC LICENSE
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

Erscipcard
=========
Erscipcard is a Django app to create personeli card. 
For each user,create a card and export it as pdf and docx documents.

Tip
-----------
You can edit model.py file to create your own database table , also edit template MSWord file to customize your card.

Quick start
-----------
1.Add "erscipcard" to your INSTALLED_APPS in your project setting.py file:
```
INSTALLED_APPS = [
...,
'erscipcard',
]
```

2.Include the erscipcard URLconf in your project urls.py like this:

```
path('erscipcard/', include('erscipcard.urls')),
```

3.Run ``python manage.py makemigrations``(optional) and ``python manage.py migrate``  to create the erscipcard models.

then run ``python manage.py createsuperuser`` to create personel for login erscipcard page.

4.Visit http://127.0.0.1:8000/erscipcard/ to create users and its cards.

first download card template , edit it and uplaod your custom template , then print cards.

use http://127.0.0.1:8000/erscipcard/setpicwidth/10 to set card picture width to 10.
