cccs-web / core

CCCS' customized django web application
4 stars 11 forks source link

formatting CV detail under projects #159

Closed cccs-ip closed 9 years ago

cccs-ip commented 9 years ago

I tried following the pattern from CV templates--- adding 'md' to suggest that output should be rendered in markdown. This seems to break things. Can you help to show the consultant print-outs for a project in markdown? For example, look at how my and Greg's project responsibilities are shown here:

https://crossculturalconsult.com/projects/project/indigenous-peoples-country-profile-russian-federation/

pwhipp commented 9 years ago

You need to load the markdown filters at the top of the template thus:

{% load mkdown_filters %}

Then use the mkdown filter I wrote, thus:

...
                <td>{{ cvproject.activities|mkdown }}</td>
...

I've made these changes and it looks good.

cccs-ip commented 9 years ago

thank you