1 package SL::Presenter::Tag;
 
   5 use SL::HTML::Restrict;
 
   6 use SL::Presenter::EscapedText qw(escape);
 
   7 use Scalar::Util qw(blessed);
 
   9 use Exporter qw(import);
 
  11   html_tag input_tag hidden_tag javascript man_days_tag name_to_id select_tag
 
  12   checkbox_tag button_tag submit_tag ajax_submit_tag input_number_tag
 
  13   stringify_attributes textarea_tag link_tag date_tag
 
  14   div_tag radio_button_tag img_tag);
 
  15 our %EXPORT_TAGS = (ALL => \@EXPORT_OK);
 
  19 my %_valueless_attributes = map { $_ => 1 } qw(
 
  20   checked compact declare defer disabled ismap multiple noresize noshade nowrap
 
  21   readonly selected hidden
 
  24 my %_singleton_tags = map { $_ => 1 } qw(
 
  25   area base br col command embed hr img input keygen link meta param source
 
  30   my ($object, $method, @params) = @_;
 
  31   return $object->$method(@params);
 
  34 { # This will give you an id for identifying html tags and such.
 
  35   # It's guaranteed to be unique unless you exceed 10 mio calls per request.
 
  36   # Do not use these id's to store information across requests.
 
  37 my $_id_sequence = int rand 1e7;
 
  39   return ( $_id_sequence = ($_id_sequence + 1) % 1e7 );
 
  45   $string    =~ s/(\"|\'|\\)/\\$1/g;
 
  50   my ($name, $value) = @_;
 
  51   my $spacer = $name eq 'class' ? ' ' : ''; # join classes with spaces, everything else as is
 
  53   ref $value && 'ARRAY' eq ref $value
 
  54   ? join $spacer, map { join_values($name, $_) } @$value
 
  58 sub stringify_attributes {
 
  62   while (my ($name, $value) = each %params) {
 
  64     next if $_valueless_attributes{$name} && !$value;
 
  65     $value = '' if !defined($value);
 
  66     $value = join_values($name, $value) if ref $value && 'ARRAY' eq ref $value;
 
  67     push @result, $_valueless_attributes{$name} ? escape($name) : escape($name) . '="' . escape($value) . '"';
 
  70   return @result ? ' ' . join(' ', @result) : '';
 
  74   my ($tag, $content, %params) = @_;
 
  75   my $attributes = stringify_attributes(%params);
 
  77   return "<${tag}${attributes}>" if !defined($content) && $_singleton_tags{$tag};
 
  78   return "<${tag}${attributes}>${content}</${tag}>";
 
  82   my ($name, $value, %attributes) = @_;
 
  84   _set_id_attribute(\%attributes, $name);
 
  85   $attributes{type} ||= 'text';
 
  87   html_tag('input', undef, %attributes, name => $name, value => $value);
 
  91   my ($name, $value, %attributes) = @_;
 
  92   input_tag($name, $value, %attributes, type => 'hidden');
 
  96   my ($name, $object, %attributes) = @_;
 
  98   my $size           =  delete($attributes{size})   || 5;
 
 100   $method            =~ s/^.*\.//;
 
 102   my $time_selection = input_tag("${name}_as_man_days_string", _call_on($object, "${method}_as_man_days_string"), %attributes, size => $size);
 
 103   my $unit_selection = select_tag("${name}_as_man_days_unit",   [[ 'h', $::locale->text('h') ], [ 'man_day', $::locale->text('MD') ]],
 
 104                                           %attributes, default => _call_on($object, "${method}_as_man_days_unit"));
 
 106   return $time_selection . $unit_selection;
 
 112   $name =~ s/\[\+?\]/ _id() /ge; # give constructs with [] or [+] unique ids
 
 113   $name =~ s/[^\w_]/_/g;
 
 120   my ($name, $collection, %attributes) = @_;
 
 122   _set_id_attribute(\%attributes, $name);
 
 124   $collection         = [] if defined($collection) && !ref($collection) && ($collection eq '');
 
 126   my $with_filter     = delete($attributes{with_filter});
 
 127   my $fil_placeholder = delete($attributes{filter_placeholder});
 
 128   my $value_key       = delete($attributes{value_key})   || 'id';
 
 129   my $title_key       = delete($attributes{title_key})   || $value_key;
 
 130   my $default_key     = delete($attributes{default_key}) || 'selected';
 
 131   my $default_val_key = delete($attributes{default_value_key});
 
 132   my $default_coll    = delete($attributes{default});
 
 134   my $value_title_sub = delete($attributes{value_title_sub});
 
 136   my $value_sub       = delete($attributes{value_sub});
 
 137   my $title_sub       = delete($attributes{title_sub});
 
 138   my $default_sub     = delete($attributes{default_sub});
 
 140   my $with_empty      = delete($attributes{with_empty});
 
 141   my $empty_title     = delete($attributes{empty_title});
 
 143   my $with_optgroups  = delete($attributes{with_optgroups});
 
 145   undef $default_key if $default_sub || $default_val_key;
 
 147   my $normalize_entry = sub {
 
 148     my ($type, $entry, $sub, $key) = @_;
 
 150     return $sub->($entry) if $sub;
 
 152     my $ref = ref($entry);
 
 155       return $entry if $type eq 'value' || $type eq 'title';
 
 159     if ( $ref eq 'ARRAY' ) {
 
 160       return $entry->[ $type eq 'value' ? 0 : $type eq 'title' ? 1 : 2 ];
 
 163     return $entry->{$key} if $ref  eq 'HASH';
 
 164     return $entry->$key   if $type ne 'default' || $entry->can($key);
 
 169   if (defined($default_coll) && !ref $default_coll) {
 
 170     %selected = ($default_coll => 1);
 
 172   } elsif (ref($default_coll) eq 'HASH') {
 
 173     %selected = %{ $default_coll };
 
 175   } elsif ($default_coll) {
 
 176     $default_coll = [ $default_coll ] unless 'ARRAY' eq ref $default_coll;
 
 178     %selected = $default_val_key ? map({ ($normalize_entry->('value', $_, undef, $default_val_key) => 1) } @{ $default_coll })
 
 179               :                    map({ ($_                                                       => 1) } @{ $default_coll });
 
 182   my $list_to_code = sub {
 
 183     my ($sub_collection) = @_;
 
 185     if ('ARRAY' ne ref $sub_collection) {
 
 186       $sub_collection = [ $sub_collection ];
 
 190     foreach my $entry ( @{ $sub_collection } ) {
 
 194       if ( $value_title_sub ) {
 
 195         ($value, $title) = @{ $value_title_sub->($entry) };
 
 198         $value = $normalize_entry->('value', $entry, $value_sub, $value_key);
 
 199         $title = $normalize_entry->('title', $entry, $title_sub, $title_key);
 
 202       my $default = $default_key ? $normalize_entry->('default', $entry, $default_sub, $default_key) : 0;
 
 204       push(@options, [$value, $title, $selected{$value} || $default]);
 
 207     return join '', map { html_tag('option', escape($_->[1]), value => $_->[0], selected => $_->[2]) } @options;
 
 211   $code    .= html_tag('option', escape($empty_title || ''), value => '') if $with_empty;
 
 213   if (!$with_optgroups) {
 
 214     $code .= $list_to_code->($collection);
 
 217     $code .= join '', map {
 
 218       my ($optgroup_title, $sub_collection) = @{ $_ };
 
 219       html_tag('optgroup', $list_to_code->($sub_collection), label => $optgroup_title)
 
 223   my $select_html = html_tag('select', $code, %attributes, name => $name);
 
 228     if (($attributes{style} // '') =~ m{width: *(\d+) *px}i) {
 
 229       $input_style = "width: " . ($1 - 22) . "px";
 
 232     my $input_html = html_tag(
 
 234       autocomplete     => 'off',
 
 236       id               => $attributes{id} . '_filter',
 
 237       'data-select-id' => $attributes{id},
 
 238       (placeholder     => $fil_placeholder) x !!$fil_placeholder,
 
 239       (style           => $input_style)     x !!$input_style,
 
 241     $select_html = html_tag('div', $input_html . $select_html, class => "filtered_select");
 
 248   my ($name, %attributes) = @_;
 
 250   my %label_attributes = map { (substr($_, 6) => $attributes{$_}) } grep { m{^label_} } keys %attributes;
 
 251   delete @attributes{grep { m{^label_} } keys %attributes};
 
 253   _set_id_attribute(\%attributes, $name);
 
 255   $attributes{value}   = 1 unless defined $attributes{value};
 
 256   my $label            = delete $attributes{label};
 
 257   my $checkall         = delete $attributes{checkall};
 
 258   my $for_submit       = delete $attributes{for_submit};
 
 260   if ($attributes{checked}) {
 
 261     $attributes{checked} = 'checked';
 
 263     delete $attributes{checked};
 
 267   $code    .= hidden_tag($name, 0, %attributes, id => $attributes{id} . '_hidden') if $for_submit;
 
 268   $code    .= html_tag('input', undef,  %attributes, name => $name, type => 'checkbox');
 
 269   $code    .= html_tag('label', $label, for => $attributes{id}, %label_attributes) if $label;
 
 270   $code    .= javascript(qq|\$('#$attributes{id}').checkall('$checkall');|) if $checkall;
 
 275 sub radio_button_tag {
 
 276   my ($name, %attributes) = @_;
 
 278   my %label_attributes = map { (substr($_, 6) => $attributes{$_}) } grep { m{^label_} } keys %attributes;
 
 279   delete @attributes{grep { m{^label_} } keys %attributes};
 
 281   $attributes{value}   = 1 unless exists $attributes{value};
 
 283   _set_id_attribute(\%attributes, $name, 1);
 
 284   my $label            = delete $attributes{label};
 
 286   _set_id_attribute(\%attributes, $name . '_' . $attributes{value});
 
 288   if ($attributes{checked}) {
 
 289     $attributes{checked} = 'checked';
 
 291     delete $attributes{checked};
 
 294   my $code  = html_tag('input', undef,  %attributes, name => $name, type => 'radio');
 
 295   $code    .= html_tag('label', $label, for => $attributes{id}, %label_attributes) if $label;
 
 301   my ($onclick, $value, %attributes) = @_;
 
 303   _set_id_attribute(\%attributes, $attributes{name}) if $attributes{name};
 
 304   $attributes{type} ||= 'button';
 
 306   $onclick = 'if (!confirm("'. _J(delete($attributes{confirm})) .'")) return false; ' . $onclick if $attributes{confirm};
 
 308   html_tag('input', undef, %attributes, value => $value, (onclick => $onclick)x!!$onclick);
 
 312   my ($name, $value, %attributes) = @_;
 
 314   _set_id_attribute(\%attributes, $attributes{name}) if $attributes{name};
 
 316   if ( $attributes{confirm} ) {
 
 317     $attributes{onclick} = 'return confirm("'. _J(delete($attributes{confirm})) .'");';
 
 320   input_tag($name, $value, %attributes, type => 'submit', class => 'submit');
 
 323 sub ajax_submit_tag {
 
 324   my ($url, $form_selector, $text, %attributes) = @_;
 
 327   $form_selector = _J($form_selector);
 
 328   my $onclick    = qq|kivi.submit_ajax_form('${url}', '${form_selector}')|;
 
 330   button_tag($onclick, $text, %attributes);
 
 333 sub input_number_tag {
 
 334   my ($name, $value, %params) = @_;
 
 336   _set_id_attribute(\%params, $name);
 
 337   my @onchange = $params{onchange} ? (onChange => delete $params{onchange}) : ();
 
 338   my @classes  = ('numeric');
 
 339   push @classes, delete($params{class}) if $params{class};
 
 340   my %class    = @classes ? (class => join(' ', @classes)) : ();
 
 342   $::request->layout->add_javascripts('kivi.Validator.js');
 
 343   $::request->presenter->need_reinit_widgets($params{id});
 
 346     $name, $::form->format_amount(\%::myconfig, $value, $params{precision}),
 
 347     "data-validate" => "number",
 
 356   html_tag('script', $data, type => 'text/javascript');
 
 359 sub _set_id_attribute {
 
 360   my ($attributes, $name, $unique) = @_;
 
 362   if (!delete($attributes->{no_id}) && !$attributes->{id}) {
 
 363     $attributes->{id}  = name_to_id($name);
 
 364     $attributes->{id} .= '_' . $attributes->{value} if $unique;
 
 373   my ($name, $content, %attributes) = @_;
 
 375   _set_id_attribute(\%attributes, $name);
 
 376   $attributes{rows}  *= 1; # required by standard
 
 377   $attributes{cols}  *= 1; # required by standard
 
 379   html_tag('textarea', $content, %attributes, name => $name);
 
 383   my ($href, $content, %params) = @_;
 
 387   html_tag('a', $content, %params, href => $href);
 
 389 # alias for compatibility
 
 390 sub link { goto &link_tag }
 
 393   my ($name, $value, %params) = @_;
 
 395   _set_id_attribute(\%params, $name);
 
 396   my @onchange = $params{onchange} ? (onChange => delete $params{onchange}) : ();
 
 397   my @classes  = $params{no_cal} || $params{readonly} ? () : ('datepicker');
 
 398   push @classes, delete($params{class}) if $params{class};
 
 399   my %class    = @classes ? (class => join(' ', @classes)) : ();
 
 401   $::request->layout->add_javascripts('kivi.Validator.js');
 
 402   $::request->presenter->need_reinit_widgets($params{id});
 
 404   $params{'data-validate'} = join(' ', "date", grep { $_ } (delete $params{'data-validate'}));
 
 407     $name, blessed($value) ? $value->to_lxoffice : $value,
 
 415   my ($content, %params) = @_;
 
 416   return html_tag('div', $content, %params);
 
 424   return html_tag('img', undef, %params);
 
 436 SL::Presenter::Tag - Layouting / tag generation
 
 444   [% P.select_tag('direction', [ [ 'left', 'To the left' ], [ 'right', 'To the right', 1 ] ]) %]
 
 446   [% P.select_tag('direction', [ { direction => 'left',  display => 'To the left'  },
 
 447                                  { direction => 'right', display => 'To the right' } ],
 
 448                                value_key => 'direction', title_key => 'display', default => 'right') %]
 
 450   [% P.select_tag('direction', [ { direction => 'left',  display => 'To the left'  },
 
 451                                  { direction => 'right', display => 'To the right', selected => 1 } ],
 
 452                                value_key => 'direction', title_key => 'display') %]
 
 454   # Use an RDBO object and its n:m relationship as the default
 
 455   # values. For example, a user can be a member of many groups. "All
 
 456   # groups" is therefore the full collection and "$user->groups" is a
 
 457   # list of RDBO AuthGroup objects whose IDs must match the ones in
 
 458   # "All groups". This could look like the following:
 
 459   [% P.select_tag('user.groups[]', SELF.all_groups, multiple=1,
 
 460                   default=SELF.user.groups, default_value_key='id' ) %]
 
 464 A module modeled a bit after Rails' ActionView helpers. Several small
 
 465 functions that create HTML tags from various kinds of data sources.
 
 467 The C<id> attribute is usually calculated automatically. This can be
 
 468 overridden by either specifying an C<id> attribute or by setting
 
 473 =head2 LOW-LEVEL FUNCTIONS
 
 477 =item C<html_tag $tag_name, $content_string, %attributes>
 
 479 Creates an opening and closing HTML tag for C<$tag_name> and puts
 
 480 C<$content_string> between the two. If C<$content_string> is undefined
 
 481 or empty then only a E<lt>tag/E<gt> tag will be created. Attributes
 
 482 are key/value pairs added to the opening tag.
 
 484 C<$content_string> is not HTML escaped.
 
 486 =item C<name_to_id $name>
 
 488 Converts a name to a HTML id by replacing various characters.
 
 490 =item C<stringify_attributes %items>
 
 492 Creates a string from all elements in C<%items> suitable for usage as
 
 493 HTML tag attributes. Keys and values are HTML escaped even though keys
 
 494 must not contain non-ASCII characters for browsers to accept them.
 
 498 =head2 HIGH-LEVEL FUNCTIONS
 
 502 =item C<input_tag $name, $value, %attributes>
 
 504 Creates a HTML 'input type=text' tag named C<$name> with the value
 
 505 C<$value> and with arbitrary HTML attributes from C<%attributes>. The
 
 506 tag's C<id> defaults to C<name_to_id($name)>.
 
 508 =item C<submit_tag $name, $value, %attributes>
 
 510 Creates a HTML 'input type=submit class=submit' tag named C<$name> with the
 
 511 value C<$value> and with arbitrary HTML attributes from C<%attributes>. The
 
 512 tag's C<id> defaults to C<name_to_id($name)>.
 
 514 If C<$attributes{confirm}> is set then a JavaScript popup dialog will
 
 515 be added via the C<onclick> handler asking the question given with
 
 516 C<$attributes{confirm}>. The request is only submitted if the user
 
 517 clicks the dialog's ok/yes button.
 
 519 =item C<ajax_submit_tag $url, $form_selector, $text, %attributes>
 
 521 Creates a HTML 'input type="button"' tag with a very specific onclick
 
 522 handler that submits the form given by the jQuery selector
 
 523 C<$form_selector> to the URL C<$url> (the actual JavaScript function
 
 524 called for that is C<kivi.submit_ajax_form()> in
 
 525 C<js/client_js.js>). The button's label will be C<$text>.
 
 527 =item C<button_tag $onclick, $text, %attributes>
 
 529 Creates a HTML 'input type="button"' tag with an onclick handler
 
 530 C<$onclick> and a value of C<$text>. The button does not have a name
 
 531 nor an ID by default.
 
 533 If C<$attributes{confirm}> is set then a JavaScript popup dialog will
 
 534 be prepended to the C<$onclick> handler asking the question given with
 
 535 C<$attributes{confirm}>. The request is only submitted if the user
 
 536 clicks the dialog's "ok/yes" button.
 
 538 =item C<man_days_tag $name, $object, %attributes>
 
 540 Creates two HTML inputs: a text input for entering a number and a drop
 
 541 down box for chosing the unit (either 'man days' or 'hours').
 
 543 C<$object> must be a L<Rose::DB::Object> instance using the
 
 544 L<SL::DB::Helper::AttrDuration> helper.
 
 546 C<$name> is supposed to be the name of the underlying column,
 
 547 e.g. C<time_estimation> for an instance of
 
 548 C<SL::DB::RequirementSpecItem>. If C<$name> has the form
 
 549 C<prefix.method> then the full C<$name> is used for the input's base
 
 550 names while the methods called on C<$object> are only the suffix. This
 
 551 makes it possible to write statements like e.g.
 
 553   [% P.man_days_tag("requirement_spec_item.time_estimation", SELF.item) %]
 
 555 The attribute C<size> can be used to set the text input's size. It
 
 558 =item C<hidden_tag $name, $value, %attributes>
 
 560 Creates a HTML 'input type=hidden' tag named C<$name> with the value
 
 561 C<$value> and with arbitrary HTML attributes from C<%attributes>. The
 
 562 tag's C<id> defaults to C<name_to_id($name)>.
 
 564 =item C<checkbox_tag $name, %attributes>
 
 566 Creates a HTML 'input type=checkbox' tag named C<$name> with arbitrary
 
 567 HTML attributes from C<%attributes>. The tag's C<id> defaults to
 
 568 C<name_to_id($name)>. The tag's C<value> defaults to C<1>.
 
 570 If C<%attributes> contains a key C<label> then a HTML 'label' tag is
 
 571 created with said C<label>. No attribute named C<label> is created in
 
 572 that case. Furthermore, all attributes whose names start with
 
 573 C<label_> become attributes on the label tag without the C<label_>
 
 574 prefix. For example, C<label_style='#ff0000'> will be turned into
 
 575 C<style='#ff0000'> on the label tag, causing the text to become red.
 
 577 If C<%attributes> contains a key C<checkall> then the value is taken as a
 
 578 JQuery selector and clicking this checkbox will also toggle all checkboxes
 
 579 matching the selector.
 
 581 =item C<radio_button_tag $name, %attributes>
 
 583 Creates a HTML 'input type=radio' tag named C<$name> with arbitrary
 
 584 HTML attributes from C<%attributes>. The tag's C<value> defaults to
 
 585 C<1>. The tag's C<id> defaults to C<name_to_id($name . "_" . $value)>.
 
 587 If C<%attributes> contains a key C<label> then a HTML 'label' tag is
 
 588 created with said C<label>. No attribute named C<label> is created in
 
 589 that case. Furthermore, all attributes whose names start with
 
 590 C<label_> become attributes on the label tag without the C<label_>
 
 591 prefix. For example, C<label_style='#ff0000'> will be turned into
 
 592 C<style='#ff0000'> on the label tag, causing the text to become red.
 
 594 =item C<select_tag $name, \@collection, %attributes>
 
 596 Creates an HTML 'select' tag named C<$name> with the contents of one
 
 597 'E<lt>optionE<gt>' tag for each element in C<\@collection> and with arbitrary
 
 598 HTML attributes from C<%attributes>. The value
 
 599 to use and the title to display are extracted from the elements in
 
 600 C<\@collection>. Each element can be one of four things:
 
 604 =item 1. An array reference with at least two elements. The first element is
 
 605 the value, the second element is its title. The third element is optional and and should contain a boolean.
 
 606 If it is true, than the element will be used as default.
 
 608 =item 2. A scalar. The scalar is both the value and the title.
 
 610 =item 3. A hash reference. In this case C<%attributes> must contain
 
 611 I<value_key>, I<title_key> and may contain I<default_key> keys that name the keys in the element to use
 
 612 for the value, title and default respectively.
 
 614 =item 4. A blessed reference. In this case C<%attributes> must contain
 
 615 I<value_key>, I<title_key> and may contain I<default_key> keys that name functions called on the blessed
 
 616 reference whose return values are used as the value, title and default
 
 621 For cases 3 and 4 C<$attributes{value_key}> defaults to C<id>,
 
 622 C<$attributes{title_key}> defaults to C<$attributes{value_key}> and
 
 623 C<$attributes{default_key}> defaults to C<selected>. Note that
 
 624 C<$attributes{default_key}> is set to C<undef> if
 
 625 C<$attributes{default_value_key}> is used as well (see below).
 
 627 In addition to pure keys/method you can also provide coderefs as I<value_sub>
 
 628 and/or I<title_sub> and/or I<default_sub>. If present, these take precedence over keys or methods,
 
 629 and are called with the element as first argument. It must return the value, title or default.
 
 631 Lastly a joint coderef I<value_title_sub> may be provided, which in turn takes
 
 632 precedence over the C<value_sub> and C<title_sub> subs. It will only be called once for each
 
 633 element and must return a list of value and title.
 
 635 If the option C<with_empty> is set then an empty element (value
 
 636 C<undef>) will be used as the first element. The title to display for
 
 637 this element can be set with the option C<empty_title> and defaults to
 
 640 The tag's C<id> defaults to C<name_to_id($name)>.
 
 642 The option C<default> can be quite a lot of things:
 
 646 =item 1. A scalar value. This is the value of the entry that's
 
 649 =item 2. A hash reference for C<multiple=1>. Whether or not an entry
 
 650 is selected by default is looked up in this hash.
 
 652 =item 3. An array reference containing scalar values. Same as 1., just
 
 653 for the case of C<multiple=1>.
 
 655 =item 4. If C<default_value_key> is given: an array reference of hash
 
 656 references. For each hash reference the value belonging to the key
 
 657 C<default_value_key> is treated as one value to select by
 
 658 default. Constructs a hash that's treated like 3.
 
 660 =item 5. If C<default_value_key> is given: an array reference of
 
 661 blessed objects. For each object the value returne from calling the
 
 662 function named C<default_value_key> on the object is treated as one
 
 663 value to select by default. Constructs a hash that's treated like 3.
 
 667 5. also applies to single RDBO instances (due to 'wantarray'
 
 668 shenanigans assigning RDBO's relationships to a hash key will result
 
 669 in a single RDBO object being assigned instead of an array reference
 
 670 containing that single RDBO object).
 
 672 If the option C<with_optgroups> is set then this function expects
 
 673 C<\@collection> to be one level deeper. The upper-most level is
 
 674 translated into an HTML C<optgroup> tag. So the structure becomes:
 
 678 =item 1. Array of array references. Each element in the
 
 679 C<\@collection> is converted into an optgroup.
 
 681 =item 2. The optgroup's C<label> attribute will be set to the
 
 682 first element in the array element. The second array element is then
 
 683 converted to a list of C<option> tags as described above.
 
 687 Example for use of optgroups:
 
 689   # First in a controller:
 
 691     [ t8("First optgroup with three items"),
 
 692       [ { id => 42, name => "item one" },
 
 693         { id => 54, name => "second item" },
 
 694         { id => 23, name => "and the third one" },
 
 696     [ t8("Another optgroup, with a lot of items from Rose"),
 
 697       SL::DB::Manager::Customer->get_all_sorted ],
 
 700   # Later in the template:
 
 701   [% L.select_tag('the_selection', COLLECTION, with_optgroups=1, title_key='name') %]
 
 711 Moritz Bunkus E<lt>m.bunkus@linet-services.deE<gt>,
 
 712 Sven Schöling E<lt>s.schoeling@linet-services.deE<gt>