cbi_del = "Remove entry"
cbi_invalid = "Error: Invalid input value"
cbi_addopt = "-- Additional Field --"
-cbi_optional = " (optional)"
\ No newline at end of file
+cbi_optional = " (optional)"
+cbi_sectempty = "This section contains no values yet"
cbi_add = "Eintrag hinzufügen"
cbi_del = "Eintrag entfernen"
cbi_invalid = "Error: Ungültige Eingabe"
-cbi_addopt = "-- Zusätzliches Feld --"
\ No newline at end of file
+cbi_addopt = "-- Zusätzliches Feld --"
+cbi_sectempty = "Diese Sektion enthält noch keine Einträge"
<th class="cbi-section-table-cell"> </th>
<%- end -%>
</tr>
- <%- for i, k in ipairs(self:cfgsections()) do
+ <%- local isempty = true
+ for i, k in ipairs(self:cfgsections()) do
+ isempty = false
+
if not self.anonymous then
-%>
<tr class="cbi-section-table-title">
<%-+cbi/ucisection-%>
<%- if self.addremove then -%>
<td class="cbi-section-table-cell">
- <input type="submit" name="cbi.rts.<%=self.config%>.<%=k%>" value="X" />
+ <input type="submit" name="cbi.rts.<%=self.config%>.<%=k%>" value="X" title="<%:delete%>" />
</td>
<%- end -%>
</tr>
<%- end -%>
+
+ <%- if isempty then -%>
+ <tr class="cbi-section-table-row">
+ <td colspan="<%=count%>"><em><%:cbi_sectempty%></em></td>
+ </tr>
+ <%- end -%>
<%- if self.addremove then -%>
<tr class="cbi-section-table-row">