module Slug
extend ActiveSupport::Concern
def slug
if not respond_to? :title or title.empty?
id
else
I18n.locale
title.parameterize
end
def to_param
slug