Questtype ?Textinput?: add support for field sizes (Issue #252) and general improvements
This commit is contained in:
commit
8d903135a5
3476 changed files with 599099 additions and 0 deletions
29
www/analytics/plugins/Annotations/templates/_annotationList.twig
Executable file
29
www/analytics/plugins/Annotations/templates/_annotationList.twig
Executable file
|
|
@ -0,0 +1,29 @@
|
|||
<div class="annotations">
|
||||
|
||||
{% if annotations is empty %}
|
||||
<div class="empty-annotation-list">{{ 'Annotations_NoAnnotations'|translate }}</div>
|
||||
{% endif %}
|
||||
|
||||
<table>
|
||||
{% for annotation in annotations %}
|
||||
{% include "@Annotations/_annotation.twig" %}
|
||||
{% endfor %}
|
||||
<tr class="new-annotation-row" style="display:none;" data-date="{{ startDate }}">
|
||||
<td class="annotation-meta">
|
||||
<div class="annotation-star"> </div>
|
||||
<div class="annotation-period-edit">
|
||||
<a href="#">{{ startDate }}</a>
|
||||
|
||||
<div class="datepicker" style="display:none;"/>
|
||||
</div>
|
||||
</td>
|
||||
<td class="annotation-value">
|
||||
<input type="text" value="" class="new-annotation-edit" placeholder="{{ 'Annotations_EnterAnnotationText'|translate }}"/><br/>
|
||||
<input type="button" class="submit new-annotation-save" value="{{ 'General_Save'|translate }}"/>
|
||||
<input type="button" class="submit new-annotation-cancel" value="{{ 'General_Cancel'|translate }}"/>
|
||||
</td>
|
||||
<td class="annotation-user-cell"><span class="annotation-user">{{ userLogin }}</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue