'tables' => array(
+ 'agency' => [ 'row_parse_post' => function(&$r) { return rent_doc('agency',$r); }, ],
+
'place' => array(
#'replace' => [ 'id' => 'addr.addr' ],
'row_parse_post' => 'place_doc',
),
+
'tenant' => array(
'row_parse_post' => 'tenant_doc',
),
text-align: center;
}
-table.rows th.key:before { content: "["; }
-table.rows th.key:after { content: "]"; }
+table.rows th .name { padding: 0 0.2em; }
+#table.rows th.key .name:before { content: "["; }
+table.rows th.key .name:after { content: "!"; }
table.rows tr { vertical-align: top; }
$html .= '<a title="First In (asc)" class="sort asc'.$sel.'" href="'.$this->url_list('orderby',"$name asc").'">'
.'<span class="asc">↓</span>'
.'</a>';
- $html .= ' ';
+ #$html .= ' ';
- $html .= $this->prettyText($name);
+ $html .= '<span class="name">'.$this->prettyText($name).'</span>';
- $html .= ' ';
+ #$html .= ' ';
# Desc
$sel = ( $this->p('orderby')=="$name desc") ? " sel" : "";