coolify/resources/views/livewire/project/application/source.blade.php

20 lines
864 B
PHP
Raw Normal View History

2023-04-19 12:42:15 +02:00
<div>
2023-05-18 15:12:26 +02:00
<form wire:submit.prevent='submit' class="flex flex-col gap-2">
<div class="flex gap-4">
<h2>Source</h2>
2023-05-25 14:05:44 +02:00
<x-forms.button type="submit">Save</x-forms.button>
2023-05-17 09:26:50 +02:00
<a target="_blank" href="{{ $application->gitCommits }}">
2023-05-18 13:26:35 +02:00
Commits
<x-external-link />
2023-05-17 09:26:50 +02:00
</a>
2023-05-26 10:20:09 +02:00
<a target="_blank" href="{{ $application->gitBranchLocation }}">
Open Repository
<x-external-link />
</a>
2023-05-17 09:26:50 +02:00
</div>
2023-05-25 14:05:44 +02:00
<x-forms.input placeholder="coollabsio/coolify-example" id="application.git_repository" label="Repository" />
<x-forms.input placeholder="main" id="application.git_branch" label=" Branch" />
<x-forms.input placeholder="HEAD" id="application.git_commit_sha" placeholder="HEAD" label="Commit SHA" />
2023-05-17 09:26:50 +02:00
</form>
2023-04-19 12:42:15 +02:00
</div>