<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %> <%@ Import Namespace="Wierszowki.Helpers"%> Raporty

Raporty

Proszę wybrać raport:

Karta wierszówkowa

<% using (Html.BeginForm("AuthorCard", "Report")) { %>
<%= Html.YearSelect("year")%>
<%= Html.MonthSelect("month")%>
<%= Html.DropDownList("author", new SelectList(Model.Authors, "Id", "FullName"))%>
<% } %>

Wierszówki miesięczne

<% using (Html.BeginForm("Authors", "Report")) { %>
<%= Html.YearSelect("year")%>
<%= Html.MonthSelect("month")%>
<% } %>

Wierszówki miesięczne wg wprowadzającego i wybranego miesiąca

<% using (Html.BeginForm("All", "Report")) { %>
<%= Html.YearSelect("year")%>
<%= Html.MonthSelect("month")%>
<% } %>

Wierszówki miesięczne wg tytułów

<% using (Html.BeginForm("AuthorsByMagazines", "Report")) { %>
<%= Html.YearSelect("year")%>
<%= Html.MonthSelect("month")%>
<% } %>

Wierszówki miesięczne wg tytułów i formy zatrudnienia

<% using (Html.BeginForm("AuthorsByMagazinesByEmployment", "Report")) { %>
<%= Html.YearSelect("year")%>
<%= Html.MonthSelect("month")%>
<% } %>