spec-sla-bot/templates/events/show.html

26 строки
752 B
HTML

<div class="page-header">
<h1>Event#Show</h1>
</div>
<ul class="list-unstyled list-inline">
<li><a href="<%= eventsPath() %>" class="btn btn-info">Back to all Events</a></li>
<li><a href="<%= editEventPath({ event_id: event.ID })%>" class="btn btn-warning">Edit</a></li>
<li><a href="<%= eventPath({ event_id: event.ID })%>" data-method="DELETE" data-confirm="Are you sure?" class="btn btn-danger">Destroy</a>
</ul>
<p>
<strong>PullrequestID</strong>: <%= event.PullrequestID %>
</p>
<p>
<strong>EventType</strong>: <%= event.EventType %>
</p>
<p>
<strong>TimeCreated</strong>: <%= event.TimeCreated %>
</p>
<p>
<strong>EventContent</strong>: <%= event.EventContent %>
</p>
<p>
<strong>SenderID</strong>: <%= event.SenderID %>
</p>