re-add submissions
Dieser Commit ist enthalten in:
Ursprung
30390e8264
Commit
a6516fe383
2 geänderte Dateien mit 18 neuen und 2 gelöschten Zeilen
16
assets/javascripts/discourse/templates/admin-wizard-submissions.hbs
Normale Datei
16
assets/javascripts/discourse/templates/admin-wizard-submissions.hbs
Normale Datei
|
@ -0,0 +1,16 @@
|
||||||
|
<div class="wizard-submissions">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
{{#each fields as |f|}}
|
||||||
|
<th>{{f}}</th>
|
||||||
|
{{/each}}
|
||||||
|
</tr>
|
||||||
|
{{#each submissions as |s|}}
|
||||||
|
<tr>
|
||||||
|
{{#each-in s as |k v|}}
|
||||||
|
<td>{{v}}</td>
|
||||||
|
{{/each-in}}
|
||||||
|
</tr>
|
||||||
|
{{/each}}
|
||||||
|
</table>
|
||||||
|
</div>
|
|
@ -241,10 +241,10 @@
|
||||||
.admin-contents .wizard-submissions {
|
.admin-contents .wizard-submissions {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
||||||
table {
|
table {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
display: inline-block;
|
position: absolute;
|
||||||
overflow-x: scroll;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Laden …
In neuem Issue referenzieren