-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/page projets #18
Merged
Merged
Changes from 8 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
596d984
feat(project-list): Add project list + map
plduthoit 391fb48
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit e5fd244
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit 80f69b4
feat: Add filter modal
plduthoit c3f4927
fix(ci): rm unused image
plduthoit 461959a
fix: ts errors
plduthoit cb1ac28
fix: ts errors on template refs
plduthoit 75586f3
feat(project-list): Add back images to cards
plduthoit 8cfb78b
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit fef42f8
fix(projects): Adjust stores naming + translations +
plduthoit ef2ebb1
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit 96620dd
fix ts
plduthoit e88ea4a
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit 4c0ca5d
rm unusedor duplicates command
plduthoit a31f437
set env as one liner
plduthoit 484dc9a
fix fixturees not loading in prod
plduthoit d045a11
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit 26c54e8
new migration
plduthoit b9556a2
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit 69aa149
add cache clear to deployement
plduthoit 51225e9
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit 9346d67
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit a487d3a
Merge branch 'main' of github.com:CartONG/plateforme-urbaine-cameroun…
plduthoit 8a882cf
move card component
plduthoit 81cdcd7
feat(project): Fix things after merge with Actor page and make projec…
plduthoit e9c79c9
fix: Adjust components pathtree
plduthoit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
App\Entity\Actor: | ||
actor_{1..40}: | ||
name: <company()> | ||
acronym: <word(3, true)> | ||
createdBy: '@user_<numberBetween(1,3)>' | ||
category: '<randomElement(<(App\Enum\ActorCategory::toArray())>)>' | ||
expertises: '<numberBetween(1, 3)>x @actorexpertise_*' | ||
thematics: '<numberBetween(1, 3)>x @thematic_*' | ||
creationDate: <dateTimeBetween("-2 years", "now")> | ||
lastUpdate: <dateTimeBetween("creationDate", "now")> | ||
description: <paragraph()> | ||
administrativeScopes: '<numberBetween(1, 3)>x @administrative_scope_*' | ||
officeName: <companySuffix()> | ||
officeAddress: <address()> | ||
contactName: <name()> | ||
contactPosition: <jobTitle()> | ||
website: <url()> | ||
phone: <phoneNumber()> | ||
email: <email()> | ||
logo: <imageUrl(200, 200)> | ||
projects: '<numberBetween(1, 8)>x @project_*' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
App\Entity\ActorExpertise: | ||
actorexpertise_1: | ||
name: Planification urbaine | ||
actorexpertise_2: | ||
name: Elaboration et mise en œuvre de la politique algorithmique de la nation ainsi que de l’aménagement du territoire | ||
actorexpertise_3: | ||
name: Production de l’Information Géospatiale |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
App\Entity\AdministrativeScope: | ||
administrative_scope_1: | ||
name: National | ||
administrative_scope_2: | ||
name: Régional | ||
administrative_scope_3: | ||
name: Départemental | ||
administrative_scope_4: | ||
name: Communal | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
App\Entity\Thematic: | ||
thematic_1: | ||
name: Appui/Gouvernance | ||
thematic_2: | ||
name: Assainissement | ||
thematic_3: | ||
name: Concertation | ||
thematic_4: | ||
name: Environnement | ||
thematic_5: | ||
name: Equipements | ||
thematic_6: | ||
name: Études urbaines | ||
thematic_7: | ||
name: Numérique | ||
thematic_8: | ||
name: Plannification | ||
thematic_9: | ||
name: Renforcement des capacités | ||
thematic_10: | ||
name: Infrastructures légères | ||
thematic_11: | ||
name: Infrastructures structurantes |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
je l'ai récupéré de ta branche mais dans l'idée plutot le gérer en enum.