Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F4044942
show.html.erb
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jul 18, 8:17 AM
Size
1 KB
Mime Type
text/html
Expires
Mon, Jul 20, 8:17 AM (1 d, 3 h)
Engine
blob
Format
Raw Data
Handle
415867
Attached To
rWEBDNS WebDNS (edet4)
show.html.erb
View Options
<table class="table table-striped table-hover">
<thead>
<tr>
<th colspan="5">Records</th>
<th colspan="3">Controls</th>
</tr>
</thead>
<tbody>
<%
@domain
.
records
.
each
do
|
record
|
%>
<tr class="
<%=
record
.
disabled?
?
'warning'
:
''
%>
">
<td>
<%=
record
.
name
%>
</td>
<td>IN</td>
<td>
<%=
record
.
type
%>
</td>
<td>
<%=
record
.
supports_prio?
?
record
.
prio
:
''
%>
</td>
<td>
<%=
record
.
content
%>
</td>
<%
if
can_edit?
(
record
)
%>
<td>
<%
if
record
.
disabled?
%>
<%=
link_to_enable
enable_domain_record_path
(
@domain
,
record
),
method
:
:put
%>
<%
else
%>
<%=
link_to_disable
disable_domain_record_path
(
@domain
,
record
),
method
:
:put
%>
<%
end
%>
</td>
<td>
<%=
link_to_edit
edit_domain_record_path
(
@domain
,
record
)
if
can_edit?
(
record
)
%>
</td>
<td>
<%=
link_to_destroy
[
@domain
,
record
]
,
method
:
:delete
,
data
:
{
confirm
:
'Are you sure?'
}
%>
</td>
<%
else
%>
<td/>
<td/>
<td/>
<%
end
%>
</tr>
<%
end
%>
</tbody>
</table>
<p>
<%=
link_to
'New Record'
,
new_domain_record_path
(
@domain
)
%>
</p>
Event Timeline
Log In to Comment