event render improvements
This commit is contained in:
parent
913fd1d22e
commit
0764b78da3
@ -935,7 +935,11 @@ aside li {
|
||||
}
|
||||
|
||||
#event-summary {
|
||||
width: 400px;
|
||||
min-width: 400px;
|
||||
}
|
||||
|
||||
.event-wrapper {
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
.vevent {
|
||||
|
@ -1,10 +1,12 @@
|
||||
{{foreach $events as $event}}
|
||||
<div class="event-wrapper" style="padding: 25px;">
|
||||
<div class="event">
|
||||
|
||||
{{if $event.item.author.xchan_name}}<a href="{{$event.item.author.xchan_url}}" ><img src="{{$event.item.author.xchan_photo_s}}" height="32" width="32" />{{$event.item.author.xchan_name}}</a>{{/if}}
|
||||
{{$event.html}}
|
||||
{{if $event.item.plink}}<a href="{{$event.plink.0}}" title="{{$event.plink.1}}" class="plink-event-link"><i class="icon-external-link" ></i></a>{{/if}}
|
||||
{{if $event.edit}}<a href="{{$event.edit.0}}" title="{{$event.edit.1}}" class="edit-event-link"><i class="icon-pencil"></i></a>{{/if}}
|
||||
{{if $event.item.plink}}<a href="{{$event.plink.0}}" title="{{$event.plink.1}}" class="plink-event-link"><i class="icon-external-link btn btn-default" ></i></a>{{/if}}
|
||||
{{if $event.edit}}<a href="{{$event.edit.0}}" title="{{$event.edit.1}}" class="edit-event-link"><i class="icon-pencil btn btn-default"></i></a>{{/if}}
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
{{/foreach}}
|
||||
|
@ -7,7 +7,7 @@
|
||||
$.get(
|
||||
'{{$baseurl}}/events/?id='+eventid,
|
||||
function(data){
|
||||
$.fancybox(data);
|
||||
$.colorbox({ maxWidth: "50%", maxHeight: "75%", html: data });
|
||||
}
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user