mirror of
https://github.com/jcreek/LivingDexTracker.git
synced 2026-07-13 02:53:45 +00:00
feat(*): Add prompts for contributing
This commit is contained in:
@@ -55,21 +55,15 @@
|
|||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if pokedexEntry.evolutionInformation}
|
{#if pokedexEntry.evolutionInformation}
|
||||||
<p><strong>Evolution Info:</strong> {pokedexEntry.evolutionInformation}</p>
|
<p><strong>How to evolve: </strong>{pokedexEntry.evolutionInformation}</p>
|
||||||
{/if}
|
{:else}
|
||||||
{#if pokedexEntry.catchInformation.length > 0}
|
<p>
|
||||||
<p><strong>Catch Info:</strong></p>
|
<strong>How to evolve: </strong>Currently missing - can you
|
||||||
<ul class="list-disc list-inside">
|
<a
|
||||||
{#each pokedexEntry.catchInformation as info}
|
href="https://github.com/jcreek/LivingDexTracker"
|
||||||
<li>
|
class="underline text-primary hover:text-secondary">help contribute</a
|
||||||
<ul>
|
>?
|
||||||
<li><strong>Location:</strong> {info.game}</li>
|
</p>
|
||||||
<li><strong>Method:</strong> {info.location}</li>
|
|
||||||
<li><strong>Level:</strong> {info.notes}</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
{/each}
|
|
||||||
</ul>
|
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -157,6 +151,39 @@
|
|||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
{#if pokedexEntry.catchInformation.length > 0}
|
||||||
|
<div class="bg-white text-black rounded-lg p-4 mb-2">
|
||||||
|
<p><strong>Where to catch: </strong></p>
|
||||||
|
<ul class="list-disc list-inside">
|
||||||
|
{#each pokedexEntry.catchInformation as info}
|
||||||
|
<li>
|
||||||
|
<ul>
|
||||||
|
<li><strong>Game:</strong> {info.game}</li>
|
||||||
|
<li><strong>Location:</strong> {info.location}</li>
|
||||||
|
<li><strong>Notes:</strong> {info.notes}</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
{/each}
|
||||||
|
</ul>
|
||||||
|
<p>
|
||||||
|
<strong>Missing a game?</strong> - can you
|
||||||
|
<a
|
||||||
|
href="https://github.com/jcreek/LivingDexTracker"
|
||||||
|
class="underline text-primary hover:text-secondary">help contribute</a
|
||||||
|
>?
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{:else}
|
||||||
|
<div class="bg-white text-black rounded-lg p-4 mb-2">
|
||||||
|
<p>
|
||||||
|
<strong>Where to catch: </strong>Currently missing - can you
|
||||||
|
<a
|
||||||
|
href="https://github.com/jcreek/LivingDexTracker"
|
||||||
|
class="underline text-primary hover:text-secondary">help contribute</a
|
||||||
|
>?
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user