Skip to content

Commit

Permalink
get rid of > in deck view
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeker committed Mar 4, 2024
1 parent 0cd641e commit ef9de7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/decks.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ <h3>{{ deck.title }}</h3>
{% endfor %}

{% for deck in personalDecks %}
<a href="{{ url_for('displayDeck', username=username, deckTitle=deck.title) }}" style="text-decoration:none" class="deck-link">>
<a href="{{ url_for('displayDeck', username=username, deckTitle=deck.title) }}" style="text-decoration:none" class="deck-link">
<div class="personal-deck" >
<form action="{{ url_for('deleteDeck', username=username, deckTitle=deck.title) }}" method="post">
<input type="hidden" name="username" value="{{ username }}">
Expand Down

0 comments on commit ef9de7a

Please sign in to comment.