{#if type === "mylog"}
{name}
{#if location !== ""}
{location}
{/if} {#if date !== ""}
{date}
{/if}
Edit
Remove
{/if} {#if type === "featured"}
{name}
{#if location != ""}
{location}
{/if}
Add
{/if} {#if type === "shared"}
{name}
{#if location !== ""}
{location}
{/if} {#if date !== ""}
{date}
{/if}
{/if} {#if type === "worldtravelregion"}
{name}
{regionId}
{#if !visited}
Mark Visited
{/if} {#if visited}
Remove
{/if}
{/if} {#if type === "planner"}
{name}
{#if location != ""}
{location}
{/if} {#if activityTypes && activityTypes.length > 0} {#each activityTypes as activity}
{activity}
{/each} {/if} {#if description && description.length > 0}
{description}
{/if} {#if date && date != undefined}
{date}
{/if}
Add
{/if}