Hi everyone,

django-tel is an app that helps you make "click-to-call" URLs in your mobile 
web apps.  More details are on its github page:
http://github.com/hilomath/django-tel/tree/master

Since its initial announcement here a few weeks ago, a template tag 
named "telify" has been added.  telify will find all phone numbers in a block 
of text and transform them into "tel:" hyperlinks.  So your template can 
include something like this:
{{{
  {% load tel %}
  {% telify %}Call 800-555-1212 to get your free gift today! (Not
  866-555-1212, that is something else entirely.){% endtelify %}
}}}

...which will finally produce an HTML response like this:

{{{
  Call <a href="tel:+18005551212">800-555-1212</a> today! (Not <a
  href="tel:+18665551212">866-555-1212</a>, that is something else
  entirely.)
}}}

I have not tagged any version yet.  But what's up there now will be very close 
to the official 1.0 version to be released soon.  License is GPL version 3.

Hope you find this of value.  Please let me know of any comments, bug reports 
or feature requests.

Cheers,
Aaron


-- 
Aaron Maxwell
Hilomath - Mobile Web Development
http://hilomath.com/

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to