{#if loading.base}
Loading groups...
{:else}
Please select a group
{#each groups as group}
{group.full_name}
{/each}
{/if} {#if loading.projects}
Loading projects...
{:else if !loading.projects && projects.length > 0}
Please select a project
{#each projects as project}
{project.name}
{/each}
{:else}
No projects found
{/if} {#if loading.branches}
Loading branches...
{:else if !loading.branches && branches.length > 0}
Please select a branch
{#each branches as branch}
{branch.name}
{/each}
{:else}
No branches found
{/if}
{loading.save ? 'Saving...' : 'Save'}