Skip to main content

Activity

published waiting lists for events? in Questions
posted 2015-06-11 15:07:56 -0700
published batch update issue in Questions
posted 2015-06-11 15:02:25 -0700
commented on Is it possible to get a list of upcoming events?
Lizzie, here is the code I used on the file I called calendar_latest:
-——————————————————————————
{% for event in page.calendar.events_upcoming limit:3 offset:0 }
<div style=“font-weight: bold; font-size: 16px;”>
<a href=“%7B%7B%20event.url%20%7D%7D”>{{ event.headline }}</a>
<br><span style=“font-weight: light; font-size: 10px;”>
{{ event.event.local_start_at | date: ‘%B %d, %Y at %I:%M %p’ }}
<br><span style=“font-weight: light; font-size: 10px;”>
{{ event.event.content | strip_html | truncatewords:15 }}
<br><a href=“%7B%7B%20event.url%20%7D%7D”>Sign Up Now …</a></span></span>
</div>
<hr>
{
endfor }
-—————————————————————————
And here is the code I used on the supporter_nav page (you’ll find it on the Custom Theme heading:
-———————————————————————————
<div class=“events_feed” style=“background-color: ”tweet-url hashtag" href=“https://twitter.com/#!/search?q=%23efefef” title=“#efefef”>#efefef; padding: 10px;">
{
subpage “calendar” with “calendar_latest” %}
</div>
-—————————————————————————
Obviously, you’ll want to redo the CSS and other styling elements. But the key is in the code in the calendar_latest file. Note that the object variable for each event is coded “event.event.xx”

Hope this helps.
posted 2013-08-17 14:54:32 -0700
commented on Search by permission level
Labeling this function “point people” rather than NB permissions is rather confusing and not exactly intuitive. When you add people, you assign permissions. Nowhere else in the process of setting permissions is there any mention of point people. Maybe it would be a good idea to change the label to match what the act of setting up a person’s relationship to the site is called?
posted 2013-08-12 13:19:24 -0700