Skip to content

Commit

Permalink
Added more icons and added a name and description in web manifest.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtronics committed Dec 11, 2016
1 parent ca390ce commit 49202f3
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 11 deletions.
3 changes: 2 additions & 1 deletion icons/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "",
"name": "Part-DB",
"description": "A managment tool for electronical parts.",
"icons": [
{
"src": "\/icons\/android-chrome-192x192.png",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

<div class="panel panel-info">
<div class="panel-heading">
<i class="fa fa-tag" aria-hidden="true"></i>&nbsp;
{t}Teile in der Kategorie{/t} <b>"{$category_name}"</b>
</div>
<form method="post" action="">
Expand Down
11 changes: 6 additions & 5 deletions templates/nextgen/show_part_info.php/smarty_show_part_info.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,12 @@
</tbody>
</table>
</div>
<div class="panel-body">
{if isset($average_price)}
<b>{t}Durchschnittspreis für 1 Stk.:{/t} {$average_price}</b>
{/if}
</div>
{if isset($average_price)}
<div class="panel-body">
<b>{t}Durchschnittspreis für 1 Stk.:{/t} {$average_price}</b>
</div>
{/if}

{else}
<div class="panel-body">
{t}Dieses Bauteil hat keine Einkaufsinformationen.{/t}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{locale path="nextgen/locale" domain="partdb"}
<div class="panel panel-info">
<div class="panel-heading">
<div class="panel-heading"><i class="fa fa-tag" aria-hidden="true"></i>&nbsp;
{t}Treffer in der Kategorie{/t} <b>"{$category_full_path}"</b>
</div>
<form method="post" action="">
Expand Down
6 changes: 4 additions & 2 deletions templates/nextgen/startup.php/smarty_startup.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@

<div class="panel panel-primary">
<div class="panel-heading">
<h3>{t}Lizenz{/t}</h3>
<h3><i class="fa fa-book" aria-hidden="true"></i>&nbsp;
{t}Lizenz{/t}</h3>
</div>
<div class="panel-body">
<!-- Doesnt work! Paypal has changed API?
Expand Down Expand Up @@ -100,7 +101,8 @@
{if !empty($rss_feed_loop)}
<div class="panel panel-default">
<div class="panel-heading">
<h4><i class="fa fa-rss" aria-hidden="true"></i> {t}Updates{/t}</h4>
<h4><i class="fa fa-rss" aria-hidden="true"></i>&nbsp;
{t}Updates{/t}</h4>
</div>
<div class="panel-body">
{foreach $rss_feed_loop as $rss}
Expand Down
3 changes: 2 additions & 1 deletion templates/nextgen/tools_import.php/smarty_check_data.tpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<div class="panel panel-default">
<div class="panel-heading">{t}Daten prüfen{/t}</div>
<div class="panel-heading"><i class="fa fa-magic" aria-hidden="true"></i>&nbsp;
{t}Daten prüfen{/t}</div>
<form action="" method="post">
<input type="hidden" name="table_rowcount" value="{$table_rowcount}">
<input type="hidden" name="file_content" value="{$file_content}">
Expand Down
3 changes: 2 additions & 1 deletion templates/nextgen/tools_import.php/smarty_upload.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
{/if}

<div class="panel panel-primary">
<div class="panel-heading">{t}Datei auswählen{/t}</div>
<div class="panel-heading"><i class="fa fa-upload" aria-hidden="true"></i>&nbsp;
{t}Datei auswählen{/t}</div>
<div class="panel-body">
<form enctype="multipart/form-data" action="" method="post" class="form-horizontal">
<div class="form-group">
Expand Down

0 comments on commit 49202f3

Please sign in to comment.