{% 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

Type:

{{ c.type_id.card_type }}

Colors:

{{ c.card_color }}

Mana Cost/Total:

{{ c.mana_cost }}

Converted Mana Cost:

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

{{ c.converted_mana_cost }}

{% else %}

No converted mana cost available

{% endif %}

Keywords:

{{ c.card_keywords }}

Collection Number:

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

{{ c.collection_number }}

{% else %}

No collection number available

{% endif %}

Rarity:

{{ c.rarity_id.card_rarity }}

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
{% endif %}
{% if l and c %}
Purchase Options
{% if c.tcg_player_purchase_url != "" %} {% endif %} {% if c.card_market_purchase_url != "" %} {% endif %} {% if c.mtg_stocks_purchase_url != "" %} {% endif %} {% if user.is_authenticated %}

{% else %}

{% endif %}
Listings Available at TCG Player
{% for item in l %} {% empty %}
Currently no listings available for this card
{% endfor %}
{% else %}
Currently no listings available for this card

{% endif %} {% endblock %}