Sha256: 4b698fcb5c1037aca54f0789b0b905f493d72dec71624b6b2e16a0f9b25d2bad

Contents?: true

Size: 565 Bytes

Versions: 3

Compression:

Stored size: 565 Bytes

Contents

<%
	access = _kas.events.call(:check_page_access, {:page => :logs_show})
	if !access
		print _("You do not have access to this page.")
		exit
	end
	
	ob = _kas.events.call(:ob)
	log = _kas.ob.get(:Log, _get["log_id"])
%>

<table class="form">
	<%
		print Knj::Web.inputs([{
			:title => _("Date"),
			:type => :info,
			:value => Datet.in(log[:date_saved]).out
		}])
		
		if ob
			print Knj::Web.input(
				:title => _("Objects"),
				:type => :info,
				:value => log.objects_html(ob)
			)
		end
	%>
</table>

<div style="padding-top: 10px;">
	<%=log.text%>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
knjappserver-0.0.30 lib/pages/logs_show.rhtml
knjappserver-0.0.29 lib/pages/logs_show.rhtml
knjappserver-0.0.28 lib/pages/logs_show.rhtml