aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/posted_date_widget.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-03-23 16:20:44 -0700
committerfriendica <info@friendica.com>2014-03-23 16:20:44 -0700
commit34eb79e6ba2255113eca6d30ae6c65b28d63abfa (patch)
tree305d842c180447803a838333dd9337fdc647a035 /view/tpl/posted_date_widget.tpl
parentba6765a40301a549f2fcbe5ddcf0dffd53e205fc (diff)
downloadvolse-hubzilla-34eb79e6ba2255113eca6d30ae6c65b28d63abfa.tar.gz
volse-hubzilla-34eb79e6ba2255113eca6d30ae6c65b28d63abfa.tar.bz2
volse-hubzilla-34eb79e6ba2255113eca6d30ae6c65b28d63abfa.zip
provide 'style' option to archive widget to choose between 'select' and 'list' format
Diffstat (limited to 'view/tpl/posted_date_widget.tpl')
-rwxr-xr-xview/tpl/posted_date_widget.tpl10
1 files changed, 9 insertions, 1 deletions
diff --git a/view/tpl/posted_date_widget.tpl b/view/tpl/posted_date_widget.tpl
index 6720d3628..1a8323926 100755
--- a/view/tpl/posted_date_widget.tpl
+++ b/view/tpl/posted_date_widget.tpl
@@ -1,9 +1,17 @@
<div id="datebrowse-sidebar" class="widget">
<h3>{{$title}}</h3>
<script>function dateSubmit(dateurl) { window.location.href = dateurl; } </script>
+{{if $style == 'list'}}
+<ul id="posted-date-selector">
+{{foreach $dates as $d}}
+<li class="posted-date-li"><a href="#" onclick="dateSubmit('{{$url}}?f=&dend={{$d.1}}&dbegin={{$d.2}}'); return false;">{{$d.0}}</a></li>
+{{/foreach}}
+</ul>
+{{else}}
<select id="posted-date-selector" name="posted-date-select" onchange="dateSubmit($(this).val());" size="{{$size}}">
{{foreach $dates as $d}}
-<option value="{{$url}}?dend={{$d.1}}&dbegin={{$d.2}}" >{{$d.0}}</option>
+<option value="{{$url}}?f=&dend={{$d.1}}&dbegin={{$d.2}}" >{{$d.0}}</option>
{{/foreach}}
</select>
+{{/if}}
</div>