1a107601fa490ca69215facceebe3d0dc5e7f1f86bcef0037bdb2d139a15065c3f31e872bae79df3
17
## the Original Code is CondeNet, Inc.
17
## the Original Code is CondeNet, Inc.
18
## 
18
## 
19
## All portions of the code written by CondeNet are Copyright (c) 2006-2008
19
## All portions of the code written by CondeNet are Copyright (c) 2006-2008
20
## CondeNet, Inc. All Rights Reserved.
20
## CondeNet, Inc. All Rights Reserved."
21
################################################################################
21
################################################################################
22
 
22
 
23
<%namespace file="utils.html" import="plain_link" />
23
<%namespace file="utils.html" import="plain_link" />
24
 
24
 
25
<%def name="plain(selected = False)">
25
<%def name="plain(selected = False)">
26
  ${plain_link(thing.selected_title() if selected else thing.title, 
26
  ${plain_link(thing.selected_title() if selected else thing.title, 
27
               thing.path, _sr_path = thing.sr_path, 
27
               thing.path, _sr_path = thing.sr_path, nocname = thing.nocname,
 
 
28
               target = thing.target, 
28
               _class = thing.css_class, _id = thing._id)}
29
               _class = thing.css_class, _id = thing._id)}
29
</%def>
30
</%def>
30
 
31
 
31
<%def name="js(selected = False)">
32
<%def name="js(selected = False)">
32
  ${plain_link(thing.selected_title() if selected else thing.title, 
33
  ${plain_link(thing.selected_title() if selected else thing.title, 
33
               '/', _sr_path = False,  
34
               '/', _sr_path = False, nocname = thing.nocname, 
34
               _class = thing.css_class, _id = thing._id, onclick = thing.onclick)}
35
               _class = thing.css_class, _id = thing._id, onclick = thing.onclick)}
35
</%def>
36
</%def>
36
 
37