|
Lines 137-155
Link Here
|
| 137 |
<li> |
137 |
<li> |
| 138 |
<label class="required" for="title">Title: </label> |
138 |
<label class="required" for="title">Title: </label> |
| 139 |
[% IF ( editColTitle ) %] |
139 |
[% IF ( editColTitle ) %] |
| 140 |
<input type="text" name="title" value="[% editColTitle | html %]" required="required" /> |
140 |
<input id="title" type="text" name="title" value="[% editColTitle | html %]" required="required" /> |
| 141 |
<span class="required">Required</span> |
141 |
<span class="required">Required</span> |
| 142 |
[% ELSE %] |
142 |
[% ELSE %] |
| 143 |
<input type="text" name="title" required="required" /> |
143 |
<input id="title" type="text" name="title" required="required" /> |
| 144 |
<span class="required">Required</span> |
144 |
<span class="required">Required</span> |
| 145 |
[% END %] |
145 |
[% END %] |
| 146 |
</li> |
146 |
</li> |
| 147 |
<li> |
147 |
<li> |
| 148 |
<label for="description">Description: </label> |
148 |
<label for="description">Description: </label> |
| 149 |
[% IF (editColDescription ) %] |
149 |
[% IF (editColDescription ) %] |
| 150 |
<input type="text" size="50" name="description" value="[% editColDescription | html %]" /> |
150 |
<input id="description" type="text" size="50" name="description" value="[% editColDescription | html %]" /> |
| 151 |
[% ELSE %] |
151 |
[% ELSE %] |
| 152 |
<input type="text" size="50" name="description" /> |
152 |
<input id="description" type="text" size="50" name="description" /> |
| 153 |
[% END %] |
153 |
[% END %] |
| 154 |
</li> |
154 |
</li> |
| 155 |
</ol> |
155 |
</ol> |
| 156 |
- |
|
|