Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-22 09:20:29 +01:00
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 {
|
||||
width: 100%;
|
||||
display: inline-block;
|
||||
|
||||
table {
|
||||
margin-top: 0;
|
||||
display: inline-block;
|
||||
overflow-x: scroll;
|
||||
position: absolute;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Laden …
In neuem Issue referenzieren