|
@@ -101,16 +101,6 @@ POD :: ${current_node.getTruncatedLabel(40)} [${current_node.getStatus().label}]
|
101
|
101
|
|
102
|
102
|
|
103
|
103
|
|
104
|
|
- <form style='display: none;' id="current-document-title-edit-form" method='post' action='${tg.url('/edit_label')}'>
|
105
|
|
- <div class="input-prepend input-append">
|
106
|
|
- <input type='hidden' name='node_id' value='${current_node.node_id}'/>
|
107
|
|
- ${POD.CancelButton('current-document-title-edit-cancel-button')}
|
108
|
|
- <input type='text' name='data_label' value='${current_node.data_label}' class="span2" />
|
109
|
|
- ${POD.SaveButton('current-document-title-save-cancel-button')}
|
110
|
|
- </div>
|
111
|
|
- </form>
|
112
|
|
-
|
113
|
|
-
|
114
|
104
|
<div class="btn-group">
|
115
|
105
|
<button class="btn">Status</button>
|
116
|
106
|
<a class="btn ${current_node.getStatus().css}" href="#"><i class="${current_node.getStatus().icon}"></i> ${current_node.getStatus().getLabel()}</a>
|
|
@@ -138,12 +128,22 @@ POD :: ${current_node.getTruncatedLabel(40)} [${current_node.getStatus().label}]
|
138
|
128
|
|
139
|
129
|
<!--</div> PAGE HEADER -->
|
140
|
130
|
<h3 id="current-document-title">${current_node.data_label}</h3>
|
|
131
|
+ <form style='display: none; margin-top: 1em;' id="current-document-title-edit-form" method='post' action='${tg.url('/edit_label')}'>
|
|
132
|
+ <div class="input-prepend input-append">
|
|
133
|
+ <input type='hidden' name='node_id' value='${current_node.node_id}'/>
|
|
134
|
+ ${POD.CancelButton('current-document-title-edit-cancel-button')}
|
|
135
|
+ <input type='text' name='data_label' value='${current_node.data_label}' class="span2" />
|
|
136
|
+ ${POD.SaveButton('current-document-title-save-cancel-button')}
|
|
137
|
+ </div>
|
|
138
|
+ </form>
|
|
139
|
+
|
|
140
|
+
|
141
|
141
|
</div>
|
142
|
142
|
<div class="span5">
|
143
|
143
|
|
144
|
144
|
<p>
|
145
|
145
|
<div id='current-document-content' class="">
|
146
|
|
- ${current_node.data_content|n}
|
|
146
|
+ ${current_node.getContentWithTags()|n}
|
147
|
147
|
</div>
|
148
|
148
|
<form style='display: none;' id="current-document-content-edit-form" method='post' action='${tg.url('/edit_content')}'>
|
149
|
149
|
<input type='hidden' name='node_id' value='${current_node.node_id}'/>
|