Sha256: 10b87b212a0c786ab2216469bc525dc609e04406d067c10213f7ef72d1702b11

Contents?: true

Size: 612 Bytes

Versions: 25

Compression:

Stored size: 612 Bytes

Contents

<%
  access = _hb.events.call(:check_page_access, {:page => :logs_show})
  if !access
    print _("You do not have access to this page.")
    exit
  end
  
  ob = _hb.events.call(:ob)
  log = _hb.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

25 entries across 25 versions & 1 rubygems

Version Path
hayabusa-0.0.30 pages/logs_show.rhtml
hayabusa-0.0.28 pages/logs_show.rhtml
hayabusa-0.0.25 pages/logs_show.rhtml
hayabusa-0.0.24 pages/logs_show.rhtml
hayabusa-0.0.23 pages/logs_show.rhtml
hayabusa-0.0.22 pages/logs_show.rhtml
hayabusa-0.0.20 pages/logs_show.rhtml
hayabusa-0.0.19 pages/logs_show.rhtml
hayabusa-0.0.18 pages/logs_show.rhtml
hayabusa-0.0.17 pages/logs_show.rhtml
hayabusa-0.0.16 pages/logs_show.rhtml
hayabusa-0.0.15 pages/logs_show.rhtml
hayabusa-0.0.14 pages/logs_show.rhtml
hayabusa-0.0.13 pages/logs_show.rhtml
hayabusa-0.0.12 pages/logs_show.rhtml
hayabusa-0.0.11 pages/logs_show.rhtml
hayabusa-0.0.10 pages/logs_show.rhtml
hayabusa-0.0.9 pages/logs_show.rhtml
hayabusa-0.0.8 pages/logs_show.rhtml
hayabusa-0.0.6 pages/logs_show.rhtml