added tabs to logistics frontend

This commit is contained in:
GotthardG
2025-02-05 11:55:46 +01:00
parent 9e5ae2b43c
commit 25673ae05c
7 changed files with 759 additions and 534 deletions

View File

@ -214,3 +214,26 @@ class PuckEvent(Base):
timestamp = Column(DateTime, default=datetime.now)
puck = relationship("Puck", back_populates="events")
# class Results(Base):
# __tablename__ = "results"
#
# id = Column(Integer, primary_key=True, index=True, autoincrement=True)
# pgroup = Column(String(255), nullable=False)
# sample_id = Column(Integer, ForeignKey("samples.id"), nullable=False)
# method = Column(String(255), nullable=False)
# #resolution: Column(Float(255), nullable=False)
# unit_cell: str
# spacegroup: str
# rmerge: float
# rmeas: float
# isig: float
# cc: float
# cchalf: float
# completeness: float
# multiplicity: float
# nobs: int
# total_refl: int
# unique_refl: int
# #comments: Optional[constr(max_length=200)] = None