15 lines
447 B
Python
15 lines
447 B
Python
import sys
|
|
import os
|
|
sys.path.append(os.path.join(os.getcwd(), 'docengine'))
|
|
|
|
from app.core.database import SessionLocal
|
|
from app.models.template import DocumentFormat
|
|
|
|
db = SessionLocal()
|
|
t = db.query(DocumentFormat).filter(DocumentFormat.is_active == True).first()
|
|
if t:
|
|
print(f"Template Name: {t.name}")
|
|
print(f"Number of cells: {len(t.cells)}")
|
|
for c in t.cells:
|
|
print(f"Cell: x={c.x}, y={c.y}, w={c.width}, h={c.height}")
|