-
Notifications
You must be signed in to change notification settings - Fork 20
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
05 - Add a page template Event overview to the website #10
Open
luca-rath
wants to merge
1
commit into
assignment/04
Choose a base branch
from
assignment/05
base: assignment/04
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
luca-rath
force-pushed
the
assignment/05
branch
2 times, most recently
from
July 7, 2020 13:52
4dea4cc
to
cd978c2
Compare
niklasnatter
force-pushed
the
assignment/04
branch
from
July 9, 2020 08:41
0f72107
to
538093d
Compare
niklasnatter
force-pushed
the
assignment/05
branch
from
July 9, 2020 08:42
cd978c2
to
ed28bc2
Compare
niklasnatter
force-pushed
the
assignment/05
branch
from
September 23, 2020 10:39
2f88389
to
372061f
Compare
niklasnatter
force-pushed
the
assignment/04
branch
from
September 23, 2020 10:47
1325021
to
d8834f7
Compare
niklasnatter
force-pushed
the
assignment/05
branch
from
September 23, 2020 10:47
372061f
to
cabf449
Compare
niklasnatter
force-pushed
the
assignment/04
branch
from
October 21, 2020 07:04
d8834f7
to
ce0b250
Compare
niklasnatter
force-pushed
the
assignment/05
branch
2 times, most recently
from
October 21, 2020 08:23
35d5c88
to
92d43c2
Compare
niklasnatter
force-pushed
the
assignment/04
branch
from
October 21, 2020 09:32
5c8bf6e
to
35f0ed7
Compare
niklasnatter
force-pushed
the
assignment/05
branch
3 times, most recently
from
October 23, 2020 11:30
efb3fbd
to
cd4cdc6
Compare
niklasnatter
force-pushed
the
assignment/04
branch
from
October 23, 2020 11:30
b0bfb69
to
95301c8
Compare
niklasnatter
force-pushed
the
assignment/05
branch
from
October 23, 2020 15:14
cd4cdc6
to
9d9a4e3
Compare
luca-rath
force-pushed
the
assignment/05
branch
from
November 6, 2020 13:12
9d9a4e3
to
f72ac72
Compare
niklasnatter
force-pushed
the
assignment/05
branch
2 times, most recently
from
February 16, 2021 14:23
f380ddc
to
a3ea35d
Compare
niklasnatter
force-pushed
the
assignment/04
branch
from
March 29, 2021 14:15
2ff2508
to
3c653f3
Compare
niklasnatter
force-pushed
the
assignment/05
branch
2 times, most recently
from
March 31, 2021 10:51
3a46121
to
ebd61cc
Compare
niklasnatter
force-pushed
the
assignment/05
branch
from
May 27, 2021 12:47
ebd61cc
to
8e74d59
Compare
niklasnatter
force-pushed
the
assignment/04
branch
from
May 27, 2021 12:56
7d90680
to
671d719
Compare
niklasnatter
force-pushed
the
assignment/05
branch
from
May 27, 2021 12:58
8e74d59
to
de792ef
Compare
niklasnatter
force-pushed
the
assignment/05
branch
from
May 27, 2021 13:01
de792ef
to
d2e8778
Compare
niklasnatter
force-pushed
the
assignment/04
branch
from
June 22, 2021 08:46
671d719
to
a902ba9
Compare
niklasnatter
force-pushed
the
assignment/05
branch
2 times, most recently
from
June 22, 2021 08:52
3eb0323
to
96c7511
Compare
niklasnatter
force-pushed
the
assignment/05
branch
5 times, most recently
from
June 20, 2022 21:19
e8288c2
to
2ca1010
Compare
niklasnatter
force-pushed
the
assignment/05
branch
from
October 17, 2022 13:31
2ca1010
to
9f5b1e2
Compare
niklasnatter
force-pushed
the
assignment/04
branch
from
October 17, 2022 14:52
4d47830
to
cc8dded
Compare
niklasnatter
force-pushed
the
assignment/05
branch
from
October 17, 2022 14:52
9f5b1e2
to
24ec20c
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Add an
event_overview
page template to the projectGoal
Unfortunately our website is lacking an overview of all events. We would love to provide a page that displays all
the events we are managing.
Steps
config/templates/pages/event_overview.xml
file and atemplates/pages/event_overview.html.twig
fileevents
with typesmart_content
and the providerevents
to yourevent_overview.xml
Events
and select the newly createdevent_overview
templatemain
navigation contextsmart_content
property in yourtemplates/pages/event_overview.html.twig
Hints
{{ dump(content.events) }}
in the Twig template to find out how the data that is returned by asmart_content
property is structured.More Information
The smart content is one of the most powerful content types of Sulu. It allows the content manager to dynamically
configure an aggregation of content from different data sources. This is possible by registering data providers for
different data sources in the system. A data provider defines which options are supported for its data source and is
responsible for loading the respective data.
Sulu already includes preconfigured data providers for pages from the content management section, contacts, accounts
and media entities.
Links