diff --git a/src/components/AddTeamModal.svelte b/src/components/AddTeamModal.svelte new file mode 100644 index 00000000..aeff59c8 --- /dev/null +++ b/src/components/AddTeamModal.svelte @@ -0,0 +1,159 @@ + + +{#if modal_open} +
+ Please provide the required information to add a new team. +
+everything is more fun together 🏃♂️🏃♀️🏃♂️
+
+ There are no teams added yet.
+ Add your first team
+
users are being loaded...
+{$_('this-might-take-a-moment')}
++ Name + | ++ Status + | ++ Groups + | ++ Action + | +|
---|---|---|---|---|
+
+ {#if u.profilePic}
+
+
+
+ {/if}
+
+
+
+ {u.firstname}
+ {u.middlename || ''}
+ {u.lastname}
+
+
+ {u.email || u.username}
+
+ |
+ + {#if u.enabled} + Active + {:else} + Inactive + {/if} + | ++ {#each u.groups as g} + {g.name} + {/each} + | + {#if active_deletes[u.id] === true} ++ + + | + {:else} ++ Edit + {#if store.state.jwtinfo.userdetails.permissions.includes('USER:DELETE')} + + {/if} + | + {/if} +