diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-07-27 20:58:25 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-07-27 20:58:25 -0700 |
commit | 52ccbd6b64d46aa7f2dfbf73599889efeaf66a08 (patch) | |
tree | b87cc042b26a89555a1a0f9a548e48cb16fdddae /view/tpl | |
parent | 0b232a610cdcbb701dacf8dd661b86b64bb582fc (diff) | |
download | volse-hubzilla-52ccbd6b64d46aa7f2dfbf73599889efeaf66a08.tar.gz volse-hubzilla-52ccbd6b64d46aa7f2dfbf73599889efeaf66a08.tar.bz2 volse-hubzilla-52ccbd6b64d46aa7f2dfbf73599889efeaf66a08.zip |
align buttons on event calendar
Diffstat (limited to 'view/tpl')
-rwxr-xr-x | view/tpl/events-js.tpl | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/view/tpl/events-js.tpl b/view/tpl/events-js.tpl index 7ecf2e753..c91419783 100755 --- a/view/tpl/events-js.tpl +++ b/view/tpl/events-js.tpl @@ -2,8 +2,9 @@ <div class="generic-content-wrapper-styled"> <h2>{{$title}}</h2> - -<button class="btn btn-xs btn-success btn-xs pull-right" title="{{$usage}}" onclick="openClose('event-upload-form');"><i class="icon-upload"></i> {{$upload}}</button> +<div class="pull-right"> +<button class="btn btn-xs" onclick="window.location.href='{{$new_event.0}}'; return false;" >{{$new_event.1}}</button> <button class="btn btn-xs" onclick="exportDate(); return false;" >{{$export.1}}</button> <button class="btn btn-xs btn-success" onclick="openClose('event-upload-form');"><i class="icon-upload"></i> {{$upload}}</button> +</div> <div id="event-upload-form" style="display:none;"> <div class="section-content-tools-wrapper"> @@ -16,9 +17,6 @@ </div> </div> -<div id="export-event-link"><button class="btn btn-default btn-sm" onclick="exportDate(); return false;" >{{$export.1}}</button></div> -<div id="new-event-link"><button class="btn btn-default btn-sm" onclick="window.location.href='{{$new_event.0}}'; return false;" >{{$new_event.1}}</button></div> - <script> function exportDate() { var moment = $('#events-calendar').fullCalendar('getDate'); @@ -26,6 +24,7 @@ function exportDate() { window.location.href=sT; } </script> - +<div class="clear"></div> +<br /> <div id="events-calendar"></div> </div> |