Mercurial > public > bravenewsurf
view bns_website/templates/news/news_list.html @ 29:ced908af601a
Adding support for the TinyMCE javascript editor in the admin for news and reviews apps.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 04 Nov 2011 19:26:48 -0500 |
parents | 1357c69e887d |
children | b9d6f6d930a9 |
line wrap: on
line source
{% extends 'base.html' %} {% load core_tags %} {% block title %}News{% endblock %} {% block custom_css %} <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/redmond/jquery-ui.css"> {% endblock %} {% block custom_js %} <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script> <script type="text/javascript"> $(function() { $("#accordion").accordion({active: false}); }); </script> {% endblock %} {% block content %} {% navbar 'news' %} <h1>News</h1> <dl> {% for news in object_list %} <div class="alert-message block-message info"> <dt><h2>{{ news.title }} {% if news.is_new %}<span class="label success">New</span>{% endif %}</h2> </dt> <dd>{{ news.content|safe }}</dd> <p align="right"> <span class="label">{{news.date}}</span></p> </div> <p/> {% endfor %} </dl> {% endblock %}