Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my patient show view i have a part that refers to a partial

<h2>Anamnesen</h2>
<%= render @patient.anamneses %>

So i also created an partial in views/anamneses/ called _anamnese.html.erb

<p>
<b>Beschreibung:</b>
<%= anamnese.beschreibung %>
</p>

Now, my problem is that only Beschreibung: can be seen, the <%= anamnese.beschreibung %> is somehow blank! So maybe someones gues what i made wrong!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.