Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Clarfiying some code blocks thanks to a comment
  • Loading branch information
weaverryan committed Sep 14, 2015
1 parent 3a59f27 commit f5c0141
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions knpu/episode3/using-many-to-many.rst
Expand Up @@ -124,7 +124,7 @@ functionality:
{% for attendee in entity.attendees %}
<li>{{ attendee }}</li>
{% else %}
<li>We're cool! RSVP!</li>
<li>nobody yet!</li>
{% endfor %}
</ul>
</dd>
Expand All @@ -140,9 +140,9 @@ Now help me add a link to the new ``event_attend`` route if the user is logged i
<dd>
{# ... #}

<a href="{{ path('event_attend', {'id': entity.id}) }}" class="btn btn-success btn-xs">
I totally want to go!
</a>
<a href="{{ path('event_attend', {'id': entity.id}) }}" class="btn btn-success btn-xs">
I totally want to go!
</a>
</dd>

Testing out the Relationship
Expand Down Expand Up @@ -207,7 +207,7 @@ method to the ``User`` class::

Refresh now. Sweet, no errors!

Let's also take a second and fill in the # of attendees on the index page:
Let's also take a second and fill in the # of attendees on the *index* page:

.. code-block:: html+jinja

Expand Down

0 comments on commit f5c0141

Please sign in to comment.