{% extends 'main/base.html' %} {% block content %}
{% if c %}
{% if user.is_authenticated and card_saved %}

View in Collection

Remove from Collectiondelete

{% elif user.is_authenticated and not card_saved %}

Add card to your collection.

{% else %}

Login or create an account to save this card to your collection.

{% endif %}
{{ c.name }} Details

Types:

{{ c.type_id|title }}

Colors:

{{ c.card_color }}

Mana Cost/Total:

{{ c.mana_cost }}

Converted Mana Cost:

{{ c.converted_mana_cost }}

Colors:

{{ c.card_color }}

Rarity:

{{ c.rarity_id|title }}

Power:

{% if c.power != -1 %}

{{ c.power }}

{% else %}

No power information available

{% endif %}

Toughness:

{% if c.toughness != -1 %}

{{ c.toughness }}

{% else %}

No toughness information available

{% endif %}

Set Name:

{{ c.set_name }}

Artist:

{{ c.artist }}

Card Text:

{{ c.card_text }}

Flavor Text:

{{ c.flavor_text }}

{% else %}

Sorry, the card information was not found in our master deck. Return home

{% endif %}
{% if l %}

Available Listings

{% for item in l %} {% endfor %}
{{ item.product_name }}

{{ item.product_line }}

{{ item.set_name }}

{% if item.price != -1 %}

Estimated Market Price:

${{ item.price }}

USD

{% else %}

No pricing information available.

{% endif %}
{% if item.tcg_player_purchase_url != "" %}

{% endif %} {% if item.card_market_purchase_url != "" %}

{% endif %} {% if item.mtg_stocks_purchase_url != "" %}

{% endif %}




{% else %}

Sorry, there are no listings for this card at this time.


{% endif %} {% endblock %}