+ Review Console +
++ Review items, decisions, and status at a glance. +
++ Track proposals through review, capture decision rationale, and + monitor overall progress from one place. +
+{stat.label}
++ {stat.value} +
+Review Items
+-
+ {reviewItems.map((item) => {
+ const notes = decisionNotes.filter(
+ (n) => n.reviewItemId === item.id,
+ );
+ return (
+
-
+ {/* Item header */}
+ + + {item.id} + + + {statusLabel[item.status]} + + + {item.category} + + + + {item.priority} priority + ++ + {/* Title & summary */} +
+ {item.title} +
++ {item.summary} +
++ Submitted by {item.submittedBy} on {item.submittedAt} +
+ + {/* Decision notes for this item */} + {notes.length > 0 && ( +++ )} ++ Decision Notes +
+-
+ {notes.map((note) => (
+
-
+ + + {verdictLabel[note.verdict]} + + + {note.author} ·{" "} + {note.timestamp.slice(0, 10)} + ++
+ {note.body} +
+
+ ))}
+
+ );
+ })}
+ -
+