mirror of
https://code.sup39.dev/repos/Wqawg
synced 2024-12-26 14:34:52 +09:00
66 lines
1.8 KiB
Text
66 lines
1.8 KiB
Text
$# This file is part of Vervis.
|
|
$#
|
|
$# Written in 2016, 2018, 2019, 2022, 2023
|
|
$# by fr33domlover <fr33domlover@riseup.net>.
|
|
$#
|
|
$# ♡ Copying is an act of love. Please copy, reuse and share.
|
|
$#
|
|
$# The author(s) have dedicated all copyright and related and neighboring
|
|
$# rights to this software to the public domain worldwide. This software is
|
|
$# distributed without any warranty.
|
|
$#
|
|
$# You should have received a copy of the CC0 Public Domain Dedication along
|
|
$# with this software. If not, see
|
|
$# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
<h2>People
|
|
|
|
<ul>
|
|
$forall (Entity personID person, Entity _ actor) <- people
|
|
<li>
|
|
<a href=@{PersonR $ hashPerson personID}>
|
|
~#{username2text $ personUsername person} #{actorName actor}
|
|
|
|
<h2>Teams
|
|
|
|
<ul>
|
|
$forall (Entity groupID _, Entity _ actor) <- groups
|
|
<li>
|
|
<a href=@{GroupR $ hashGroup groupID}>
|
|
&#{keyHashidText $ hashGroup groupID} #{actorName actor}
|
|
|
|
<h2>Repos
|
|
|
|
<ul>
|
|
$forall (Entity repoID _, Entity _ actor) <- repos
|
|
<li>
|
|
<a href=@{RepoR $ hashRepo repoID}>
|
|
^#{keyHashidText $ hashRepo repoID} #{actorName actor}
|
|
|
|
<h2>Ticket Trackers
|
|
|
|
<ul>
|
|
$forall (Entity deckID _, Entity _ actor) <- decks
|
|
<li>
|
|
<a href=@{DeckR $ hashDeck deckID}>
|
|
=#{keyHashidText $ hashDeck deckID} #{actorName actor}
|
|
|
|
<h2>Merge Request Trackers
|
|
|
|
<ul>
|
|
$forall (Entity loomID _, Entity _ actor) <- looms
|
|
<li>
|
|
<a href=@{LoomR $ hashLoom loomID}>
|
|
+#{keyHashidText $ hashLoom loomID} #{actorName actor}
|
|
|
|
<h2>Projects
|
|
|
|
<ul>
|
|
$forall (Entity projectID _, Entity _ actor, components) <- projects
|
|
<li>
|
|
<a href=@{ProjectR $ hashProject projectID}>
|
|
\$#{keyHashidText $ hashProject projectID} #{actorName actor}
|
|
<ul>
|
|
$forall c <- components
|
|
<li>
|
|
^{componentLinkFedW c}
|