mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-29 13:41:59 +02:00
10 lines
225 B
Python
10 lines
225 B
Python
from django.shortcuts import render
|
|
|
|
from apps.export_app.resources.transactions import TransactionResource
|
|
|
|
|
|
# Create your views here.
|
|
def export(request):
|
|
dataset = TransactionResource().export()
|
|
print(dataset.csv)
|