File Coverage

blib/lib/Mojolicious/resources/templates/mojo/command/resources/index.html.ep
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1 2     2   6667 % my $a = shift;
  2     2   29  
  2     2   15  
  2     2   175  
  2         6  
  2         698  
  2         4486  
  2         6  
  2         18  
  2         148  
  2         5  
  2         579  
2             %% layout 'blog', title => 'Blog/<%= ucfirst $a->{t} %>';
3             %% my @columns = qw(<%= join(' ', @{$a->{columns}}) %>); #table columns
4             %%= link_to 'New record in table "<%= $a->{t} %>"' => 'create_<%= $a->{t} %>'
5            
6            
7            
8             %% for my $column (@columns) {
9             <%%= uc($column) %>
10             %% }
11            
12            
13            
14             %% for my $item (@$<%= $a->{t} %>) {
15            
16             <%%= link_to $item->{id} => show_<%= $a->{t} %> => {id => $item->{id}} %>
17             %% for my $column (@columns[1 .. $#columns]) {
18             <%%= $item->{$column} %>
19             %% }
20            
21             %% }
22            
23