Sha256: 77687383e5b385cfcc4964574e199f6df3d269a14af4256f874af71cf0cb6ba6

Contents?: true

Size: 932 Bytes

Versions: 6

Compression:

Stored size: 932 Bytes

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">
                    <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 sp:each="@week_days |i|">{ @days_short_names[i] }</th>
            </tr>
        </thead>
        <tbody>
            <tr sp:each="@rows |row|">
                <td sp:each="row |col|" class="{ col[:classes] }">
                    { col[:day] }
                </td>
            </tr>
        </tbody>
    </table>
</div>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spiderfw-0.6.27 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.26 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.26.pre1 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.25 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.24 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.23 apps/core/components/widgets/month_calendar/month_calendar.shtml