Skip to main content

Create an agenda on top of djangocms-stories!

Project description

djangocms-stories-agenda logo

Add an Agenda to your blog that displays upcoming events!

Easy! CheapFree! Not seen on TV!

Still using djangocms-blog? Check out djangocms-blog-agenda instead!

djangocms-stories-agenda screenshot

Install

  • Install the package

    python3 -m pip install djangocms-stories-agenda
    
  • Add it in your INSTALLED_APPS:

    "djangocms_stories_agenda",
    "recurrence",
    
  • Run the migration:

    python3 manage.py migrate djangocms_stories_agenda
    
  • Update the djangocms-stories urls by the ones in this module, by using this lovely setting:

    STORIES_URLCONF = "djangocms_stories_agenda.patched_urls"
    
  • Create a new blog configuration.

    • Instance namespace: put what you want.
    • Application title: put what you want.
    • Object name: put what you want.
    • [...]
    • Click on Layout (Show):
      • [...]
      • Template prefix: djangocms_stories_agenda.

      That's very important since this application will check this value multiple times (to update the queryset, to check the templates, to add the post extension "event date" only to the Agenda app...).

    • Save this config.
  • that's all folks!


Explanations/Views/Misc

  • A new Event date DateTime field has been added to blog posts that have the template prefix set to djangocms_stories_agenda.
  • A new post list view was created for the Agenda view, it includes all the posts where the event_date is set to a date in the future.
  • Another view is available at _("/past/"), that will display each post where the event_date is in the past.
  • The templates are not in djangocms_stories/templates anymore, but in djangocms_stories_agenda/templates. Something's not appearing on your templates? Try to edit the file in djangocms_stories_agenda/templates/!
  • We removed the mention of comments & liveblog in the admin form, because we're not using this.
  • We use some very special bits of code that are using some internal features of djangocms-stories (see misc.py, and apps.py). Try the module before pushing an update.

Config

Settings

DJANGOCMS_STORIES_AGENDA_HIDE_UPCOMING_EVENTS_AFTER_CHOICES

a tuple of choices describing when AgendaUpcomingEntriesPlugin will hide events.

Default choices are:

(
    ("start", _("just after event start date")),
    ("start+1h", _("1 hour after event start date")),
    ("start+4h", _("4 hours after event start date")),
    ("start+1d", _("1 day after event start date")),
    ("start+2d", _("2 days after event start date")),
    ("start+3d", _("3 days after event start date")),
    ("start+7d", _("7 days after event start date")),
    ("end", _("just after event end date")),
)

DJANGOCMS_STORIES_AGENDA_RECURRENCE_IS_ENABLED

Wether to enable recurrence for events.

DJANGOCMS_STORIES_AGENDA_RECURRENCE_MAX_DAYS_SEARCH

Number of days (int) to limit the search of recurring events. Defaults to 365.

DJANGOCMS_STORIES_AGENDA_TEMPLATE_PREFIXES

You may need to add multiple agenda blogs with different template prefixes, in order to have different html content or styles for each agenda.

Add this list in your settings so that djangocms-stories-agenda will work (display start_date & end_date in add/update views of the articles):

DJANGOCMS_STORIES_AGENDA_TEMPLATE_PREFIXES = [
    "djangocms_stories_upcoming_calendar",
    "other_djangocms_stories_template_prefix",
    "...",
]

The default template prefix (djangocms_stories_agenda) will still be recognized even if you had this setting, you don't need to add it in the list.

DJANGOCMS_STORIES_AGENDA_OPEN_FIELDSETS_BY_DEFAULT

If you want to open all the fieldsets in the admin instead of having to click on them. Defaults to False.

Multisite

This modules handles multisite just fine; just add BLOG_MULTISITE = True in your settings, and our module will inject the get_site function directly inside the class returned by get_user_model()! (it is done in AppConfig ready() method)

You will then need to create a new "Global Page Permission" entry with your user/group, and to select the site where the user/group will have the right to post new articles/agenda posts.

If you're curious about this function, here it is.

Recurrences

Recurring events are handled with the help of django-recurrence package. Only the first event is saved into database, and following recurring events are added into querysets just before they are displayed. Only events that will occur up to n days after the first event are displayed. You can change this delay with the setting DJANGOCMS_STORIES_AGENDA_RECURRENCE_MAX_DAYS_SEARCH.

You need to update the way you display dates on the templates in order to show the correct date from a recurring event, like this:

{% if post.occurrence %}
    {# use post.occurrence here #}
{% else %}
    {% with post_event=post.extension.first %}
        {# use post_event.event_start_date and post_event.event_end_date here #}
    {% endwith %}
{% endif %}

Tests

Run the tests using tox:

tox

Run the tests using pytest:

virtualenv .venv
source .venv/bin/activate
pip install -r requirements-test.txt
pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

djangocms_stories_agenda-0.1.5.tar.gz (39.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

djangocms_stories_agenda-0.1.5-py3-none-any.whl (45.5 kB view details)

Uploaded Python 3

File details

Details for the file djangocms_stories_agenda-0.1.5.tar.gz.

File metadata

  • Download URL: djangocms_stories_agenda-0.1.5.tar.gz
  • Upload date:
  • Size: 39.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.10

File hashes

Hashes for djangocms_stories_agenda-0.1.5.tar.gz
Algorithm Hash digest
SHA256 0c5415dc6dbd397e0a30741f0e43fb54fb2e300ffb845517a71c395016cc1f12
MD5 8cdf4055bd2da1847b8ac7abfc63f5df
BLAKE2b-256 8063b0d72507c94f05945f8aacf23a038e86ae41340b0fbbafe6d4d4c17afb1e

See more details on using hashes here.

File details

Details for the file djangocms_stories_agenda-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for djangocms_stories_agenda-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 3015cf1f7d396bc0828e5734b15ad90056e8e4a23cd697505a2708204d9281e8
MD5 64f23d81e3cc2421e45894c626f96dc1
BLAKE2b-256 f37e7af8ef85ed7893db589c0a91d8e15b571216af8d084dbd13a3e78abadd1e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page