/[Arh]/lib/Arh/View/UnitPictures.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/Arh/View/UnitPictures.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 33 by dpavlin, Fri Dec 14 14:29:32 2007 UTC revision 44 by dpavlin, Sun Apr 6 14:42:08 2008 UTC
# Line 88  template 'new_picture' => sub { Line 88  template 'new_picture' => sub {
88          return unless $self->current_user->editing;          return unless $self->current_user->editing;
89    
90          my ( $id, $unit ) = get(qw(id unit));          my ( $id, $unit ) = get(qw(id unit));
91          my $record_class = $self->record_class;          warn "## unit $id $unit";
92          my $create = $record_class->as_create_action(  
93    #       my $record_class = $self->record_class;
94    #       warn "## new_picture record_class: $record_class\n";
95    #       my $create = $record_class->as_create_action(
96    
97            my $create = new_action(
98                    class => 'UploadPicture',
99                  moniker => "create-" . Jifty->web->serial,                  moniker => "create-" . Jifty->web->serial,
100          );          );
         warn "## unit $unit";  
101    
102          my $attach_to =          my $attach_to =
103                  Jifty->web->current_region->parent ?                  Jifty->web->current_region->parent ?
# Line 102  template 'new_picture' => sub { Line 107  template 'new_picture' => sub {
107          warn "## attach_to = $attach_to";          warn "## attach_to = $attach_to";
108    
109      form {      form {
110                  render_param($create => 'picture');                  { class is 'create-picture' };
111                    render_action( $create => [ 'campaign', 'content', 'type' ] );
112                  outs_raw( $create->hidden( unit => $unit ) );                  outs_raw( $create->hidden( unit => $unit ) );
113                  hyperlink(                  hyperlink(
114                          label   => _("Add picture"),                          label   => _("Add picture"),
# Line 140  template 'fragment' => sub { Line 146  template 'fragment' => sub {
146                  { class is 'pictures-by-unit' };                  { class is 'pictures-by-unit' };
147    
148                  if ( $unitpictures->count ) {                  if ( $unitpictures->count ) {
   
149                          em { _('Pictures for unit'), ' ', $unit->name };                          em { _('Pictures for unit'), ' ', $unit->name };
   
                         set( search_collection => $unitpictures );  
                         render_region(  
                                 name => 'unit-pictures',  
                                 path => '/unitpictures/list',  
                                 defaults => {  
                                         page => 1,  
                                         unit => $unit->id,  
                                 }  
                         );  
   
150                  } else {                  } else {
   
151                          em { _('No pictures for unit'), ' ', $unit->name };                          em { _('No pictures for unit'), ' ', $unit->name };
   
152                  }                  }
153    
154                    set( search_collection => $unitpictures );
155                    render_region(
156                            name => 'unit-pictures',
157                            path => '/unitpictures/list',
158                            defaults => {
159                                    page => 1,
160                                    unit => $unit->id,
161                            }
162                    );
163    
164          }          }
165  };  };
166    

Legend:
Removed from v.33  
changed lines
  Added in v.44

  ViewVC Help
Powered by ViewVC 1.1.26