mirror of
https://github.com/opnsense/plugins.git
synced 2026-02-03 20:40:37 -05:00
index.volt changes (#4719)
Removed fixed size grid data-width specifiers.
This commit is contained in:
parent
592a2feeb7
commit
2ea658a856
2 changed files with 11 additions and 11 deletions
|
|
@ -1,6 +1,6 @@
|
|||
PLUGIN_NAME= udpbroadcastrelay
|
||||
PLUGIN_VERSION= 1.0
|
||||
PLUGIN_REVISION= 5
|
||||
PLUGIN_REVISION= 6
|
||||
PLUGIN_COMMENT= Control udpbroadcastrelay processes
|
||||
PLUGIN_DEPENDS= udpbroadcastrelay
|
||||
PLUGIN_MAINTAINER= mjwasley@gmail.com
|
||||
|
|
|
|||
|
|
@ -87,16 +87,16 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
<table id="grid-proxies" class="table table-condensed table-hover table-striped table-responsive" data-editDialog="DialogEdit">
|
||||
<thead>
|
||||
<tr>
|
||||
<th data-column-id="enabled" data-width="1em" data-type="string" data-formatter="rowtoggle">{{ lang._('Enabled') }}</th>
|
||||
<th data-column-id="interfaces" data-width="2em" data-type="string" data-visible="true">{{ lang._('Interfaces') }}</th>
|
||||
<th data-column-id="multicastaddress" data-width="2em" data-type="string" data-visible="true">{{ lang._('Multicast Addresses') }}</th>
|
||||
<th data-column-id="sourceaddress" data-width="2em" data-type="string" data-visible="true">{{ lang._('Source Address') }}</th>
|
||||
<th data-column-id="listenport" data-width="2em" data-type="string" data-visible="true">{{ lang._('Listen Port') }}</th>
|
||||
<th data-column-id="InstanceID" data-width="1em" data-type="string" data-visible="true">{{ lang._('ID') }}</th>
|
||||
<th data-column-id="description" data-width="2em" data-type="string">{{ lang._('Description') }}</th>
|
||||
<th data-column-id="uuid" data-type="string" data-identifier="true" data-visible="false">{{ lang._('ID') }}</th>
|
||||
<th data-column-id="RevertTTL" data-width="2em" data-type="string" data-visible="true" data-formatter="boolean">{{ lang._('Use ID as TTL') }}</th>
|
||||
<th data-column-id="commands" data-width="2em" data-formatter="commands" data-sortable="false">{{ lang._('Commands') }}</th>
|
||||
<th data-column-id="enabled" data-type="string" data-formatter="rowtoggle">{{ lang._('Enabled') }}</th>
|
||||
<th data-column-id="interfaces" data-type="string" data-visible="true">{{ lang._('Interfaces') }}</th>
|
||||
<th data-column-id="multicastaddress" data-type="string" data-visible="true">{{ lang._('Multicast Addresses') }}</th>
|
||||
<th data-column-id="sourceaddress" data-type="string" data-visible="true">{{ lang._('Source Address') }}</th>
|
||||
<th data-column-id="listenport" data-type="string" data-visible="true">{{ lang._('Listen Port') }}</th>
|
||||
<th data-column-id="InstanceID" data-type="string" data-visible="true">{{ lang._('ID') }}</th>
|
||||
<th data-column-id="description" data-type="string">{{ lang._('Description') }}</th>
|
||||
<th data-column-id="uuid" data-identifier="true" data-visible="false">{{ lang._('ID') }}</th>
|
||||
<th data-column-id="RevertTTL" data-type="string" data-visible="true" data-formatter="boolean">{{ lang._('Use ID as TTL') }}</th>
|
||||
<th data-column-id="commands" data-formatter="commands" data-sortable="false">{{ lang._('Commands') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
|||
Loading…
Reference in a new issue