Sha256: 6ed3f3715e4f48a2e0bceb2d88bf1c90221741ce352ef182cf7249b19b6debc1

Contents?: true

Size: 867 Bytes

Versions: 6

Compression:

Stored size: 867 Bytes

Contents

<div>
    <tpl:asset type="css" src="css/month_calendar.css" />
    <table class="{ @widget[:css_class] }">
        <thead>
            <tr>
                <th colspan="7">
                    <a href="{ @request[:path] }?_w{ @widget[:param] }%5Bd%5D={ @prev_link }"><span>&lt;&lt;</span></a>
                    { @current_month_name } { @year }
                    <a href="{ @request[:path] }?_w{ @widget[:param] }%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.5 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.4 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.3 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.2 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.1 apps/core/components/widgets/month_calendar/month_calendar.shtml
spiderfw-0.6.0 apps/core/components/widgets/month_calendar/month_calendar.shtml