skip to navigation
skip to content

emencia.django.links 0.2.2

Django app that create a links directory

Downloads ↓

Introduction

emencia.django.links is a django standalone app that provide a web link's collection.

Features

  • add title and description to a web link
  • classify by language
  • classify by categories
  • published features (start-end publish date, visibility status, site)
  • standard view
  • template tag that get the x last entries

Installation

  1. With easy_install:

    # easy_install emencia.django.links
    
  2. Python install:

    # python setup.py install
    

You could retrive source from the pypi or bitbucket:

Instructions

  • Install the package in your python sys path

  • Add the app 'emencia.django.links' in the settings.py django project's file

  • Import urls into your root urls.py file:

    (r'^links/', include('emencia.django.links.urls')),
    
  • For use the template tag simply load links_monitoring and use get_latest_links tag. The syntaxe is {% get_latest_links number_of_links as variable_name %}:

    {% load links_monitoring %}
    {% get_latest_links 2 as last_link %}
    {% for link in last_link %}
        <span><a href="{{ link.url }}">{{ link.title }}</a></span>
    {% endfor %}
    

Changelog

0.2.2

  • add site management

0.2.1

  • Fix bug in admin file.

0.2

  • First public release.

0.1dev (unreleased)

  • Initial release.
 
File Type Py Version Uploaded on Size # downloads
emencia.django.links-0.2.2-py2.5.egg (md5) Python Egg 2.5 2010-01-14 16KB 729
emencia.django.links-0.2.2.tar.gz (md5) Source 2010-01-14 5KB 473