citra-emu
/
citra-web
Archived
1
0
Fork 0

Updated boolean values to return N/A on null instead of false. Updated table CSS.

This commit is contained in:
chris062689 2017-06-03 17:27:58 -04:00
parent 9dd87b75d3
commit 09c4080370
1 changed files with 4 additions and 4 deletions

View File

@ -32,10 +32,10 @@
</div>
<div class="col-md-7">
<!-- Metadata information -->
<table class="table table-striped">
<table class="table table-striped table-bordered">
<tbody>
<tr>
<td>Status</td>
<td style="width: 100px;">Status</td>
<td><b>{{ $rating.name }}</b><br />{{ $rating.description }}</td>
</tr>
<tr>
@ -52,11 +52,11 @@
</tr>
<tr>
<td>System Files Required?</td>
<td>{{ if eq .Params.needs_system_files true }}Yes{{ else }}No{{ end }}</td>
<td>{{ if eq .Params.needs_system_files true }}Yes{{ else if eq .Params.needs_system_files false }}No{{ else }}N/A{{ end }}</td>
</tr>
<tr>
<td>Shared Font Required?</td>
<td>{{ if eq .Params.needs_shared_font true }}Yes{{ else }}No{{ end }}</td>
<td>{{ if eq .Params.needs_shared_font true }}Yes{{ else if eq .Params.needs_shared_font false }}No{{ else }}N/A{{ end }}</td>
</tr>
</tbody>
</table>