Sha256: c772b482ac1b983b4dd34a3df2657d4ae9fe1e7ff115f9ab80fbcf3e2eb673bc

Contents?: true

Size: 1.1 KB

Versions: 10

Compression:

Stored size: 1.1 KB

Contents

<div>
    <tpl:asset type="css" src="css/month_calendar.css" />
    <tpl:asset type="js" src="widgets/month_calendar.js" />
    <table class="{ @widget[:css_class] }">
        <thead>
            <tr>
                <th colspan="7" scope="row" id="current_month">
                    <a href="{ @request[:path] }?_w{ @widget[:param_u] }%5Bd%5D={ @prev_link }"><span>&lt;&lt;</span></a>
                    { @current_month_name } { @year }
                    <a href="{ @request[:path] }?_w{ @widget[:param_u] }%5Bd%5D={ @next_link }"><span>&gt;&gt;</span></a>
                </th>
            </tr>
            <tr>
                <th scope="col" sp:each="@week_days |i|" id="{ @days_short_names[i] }_{ i }">{ @days_short_names[i] }</th>
            </tr>
        </thead>
        <tbody>
            <tr sp:each="@rows |row|">
                <td sp:each_with_index="row |col, i|"  headers="event_calendar-current_month event_calendar-{ @days_short_names[i+1] }_{ i }" class="{ col[:classes].join(' ') }">
                    { col[:day] }
                </td>
            </tr>
        </tbody>
    </table>
</div>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
spiderfw-1.0.1 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-1.0.0 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.39 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.38 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.37 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.35 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.34 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.33 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.32 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.31 apps/core/components/widgets/month_calendar/month_calendar.shtml