Block a user
Generate ID from name for eForms
tedective_etl/ted_to_ocds/transform.py
Lines 527 to 535 in 0f8fb40017
supplier = ocds.Organization( |
|
id = str(uuid.uuid4()), |
|
roles={"supplier"} |
|
) |
|
supplier.name = name |
|
supplier.identifier = identifier |
|
supplier.address = address |
|
supplier.contactPoint = contactPoint |
|
supplier.details = details |
feat: adapted UI to allow date filtering
Allow filtering by date (YYYY-MM)
This is probably the shadcn code we want to use:
from https://github.com/shadcn-ui/ui/issues/885#issuecomment-2059600641:
"use client"
import * as React from "react"
import * as…
Week 3 - API
Hey @micgor32,
so what happens now is that all the data until 2017-01
is requested but the limit of the kuzudb query hits. The current default is 400, see https://git.fsfe.org/TEDective/api/s…