Add project files.

This commit is contained in:
2025-05-01 15:18:30 +03:00
parent e058ab8015
commit 774d695414
3094 changed files with 1336814 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
@model int // ProjectID
@{
ViewData["Title"] = "CreateProjectGallery";
Layout = "~/Views/AdminLayout/Index.cshtml";
}
<form asp-action="CreateProjectGallery" asp-controller="ProjectGallery" method="post" enctype="multipart/form-data">
<div class="form-group">
<label>Proje Seçiniz:</label>
<select asp-items="ViewBag.ProjectList" class="form-control" name="projectId" required>
<option value="">-- Proje Seçiniz --</option>
</select>
</div>
<div class="form-group mt-3">
<label>Galeri Görselleri:</label>
<input type="file" name="GalleryFiles" multiple class="form-control" required />
</div>
<button type="submit" class="btn btn-primary">Görselleri Yükle</button>
<a href="/ProjectGallery/Index/" class="btn btn-warning ml-2">Listeye Dön</a>
</form>