Skip to content

Commit

Permalink
Merge pull request #5 from flockean/develop
Browse files Browse the repository at this point in the history
ci: addNewProjects
  • Loading branch information
flockean authored Sep 2, 2024
2 parents aad237e + 0277334 commit 5d36429
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 9 deletions.
26 changes: 18 additions & 8 deletions src/app/management-view/management-view.component.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
<div class="basebob">
Management of Projects and Services, here you can create, modify and delete Projects in the Database
</div>

<!-- TODO: This css style is used in multiple components, abstract this container in new component --->
<div class="flex" >
<app-container-block title="Placeholder Container" class="w-1/2 h-full items-stretch">
Description
<div class="mt-4">
This is a Placeholder for next Ideads I want to place here!
</div>
</app-container-block>
<div class="w-1/2">
<app-container-block title="Create New Service">
<form class="flex">
<div [formGroup]="serviceForm" class="grid gap-4 w-2/4 p-4">
Expand All @@ -11,15 +17,19 @@
<input type=text placeholder="Service Languages">
</div>
<div class="grid gap-4 w-1/2 p-4">
<div class="h-1/2 border-gray-500 border-dashed border-2 place-content-center text-center"> Insert Representativ Picture ;) </div>
<div class="h-full border-gray-500 border-dashed border-2 place-content-center text-center"> Insert Representativ Picture ;) </div>
</div>
</form>
<button class="w-1/4 place-self-end"> Create New Service </button>
</app-container-block>

<app-container-block title="Create New Project">
<form>
<div [formGroup]="projectForm" class="grid gap-4 w-2/4 p-4">
--PlaceHolder--
</div>
</form>
<form>
<div [formGroup]="projectForm" class="grid gap-4 w-2/4 p-4">
--PlaceHolder--
</div>
</form>
<button class="w-1/4 place-self-end">Create New Project</button>
</app-container-block>
</div>
</div>
22 changes: 21 additions & 1 deletion src/assets/projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@
{
"project_id": 2,
"name": "DiscordBot",
"description": "The Discordbot is construkted for simple tasks eg. messaging a friend, send gifs or set Alerts for important Events"
"description": "The Discordbot is constructed for simple tasks eg. messaging a friend, send gifs or set Alerts for important Events"
},
{
"project_id":3,
"name": "SquadMandalore",
"description": "SquadMandalore is our Scrum Team of multiple (~8) intelligent and motivated students in which developed multiple (at the moment two) Applications to present in the University or as Exam for Single Modules (*Note: 1 Service is a whole Application)"
}

],
"service":[
{
Expand All @@ -34,6 +40,20 @@
"lang": "Python",
"focus": "DiscordAPI, Management",
"project": 2
},
{
"service_id": 4,
"name": "SchoolAthletesManagement",
"lang": "HTML, SCSS, Typescript, Python",
"focus": "Angular, FastAPI, Docker",
"project": 3
},
{
"service_id": 5,
"name": "TimeTrackingApp",
"lang": "Rust, Dart",
"focus": "Flutter, GraphQL",
"project":3
}
]
}

0 comments on commit 5d36429

Please sign in to comment.