diff options
Diffstat (limited to 'equations/templates')
6 files changed, 6 insertions, 6 deletions
diff --git a/equations/templates/equations/equation_detail.html b/equations/templates/equations/equation_detail.html index 978b2e1..968e5ef 100644 --- a/equations/templates/equations/equation_detail.html +++ b/equations/templates/equations/equation_detail.html @@ -4,7 +4,7 @@ {% block content %} <div style="width: 100%; text-align:center;"> -<img src="{{ object.get_render_url }}" style="border: none;" /></div> +<img src="{{ object.render.url }}" style="border: none;" /></div> <br /> <table width="100%"> {% if object.description %} diff --git a/equations/templates/equations/equation_list.html b/equations/templates/equations/equation_list.html index 549c38f..9712182 100644 --- a/equations/templates/equations/equation_list.html +++ b/equations/templates/equations/equation_list.html @@ -8,7 +8,7 @@ {% for item in object_list %} <tr style="height:60px;"><td style="width:50%;"> <a href="{{ item.get_absolute_url }}" class="imglink"> - <img style="border: none;" src="{{ item.get_render_url }}" /></a> + <img style="border: none;" src="{{ item.render.url }}" /></a> </td><td style="width: 50%"><a href="{{ item.get_absolute_url }}"> {{ item.name }}</a></td></tr> {% endfor %} diff --git a/equations/templates/equations/symbol_detail.html b/equations/templates/equations/symbol_detail.html index 85f59d8..b53b1d6 100644 --- a/equations/templates/equations/symbol_detail.html +++ b/equations/templates/equations/symbol_detail.html @@ -4,7 +4,7 @@ {% block content %} <div style="width: 100%; text-align:center;"> -<img src="{{ object.get_render_url }}" style="border: none;" /></div> +<img src="{{ object.render.url }}" style="border: none;" /></div> <br /> <table width="100%"> <tr><td width="25%"><b>Raw LaTeX:</b></td><td><pre>{{ object.latex }}</pre></td></tr> diff --git a/equations/templates/equations/symbol_list.html b/equations/templates/equations/symbol_list.html index 1983b3f..99c4f55 100644 --- a/equations/templates/equations/symbol_list.html +++ b/equations/templates/equations/symbol_list.html @@ -8,7 +8,7 @@ {% for item in object_list %} <tr style="height:60px;"><td style="width:10%;padding-left:10%;"> <a href="{{ item.get_absolute_url }}" class="imglink"> - <img style="border: none;" src="{{ item.get_render_url }}" /></a> + <img style="border: none;" src="{{ item.render.url }}" /></a> </td><td style="width: 70%"><a href="{{ item.get_absolute_url }}"> {{ item.name }}</a></td></tr> {% endfor %} diff --git a/equations/templates/equations/variable_detail.html b/equations/templates/equations/variable_detail.html index 05c432f..63ca233 100644 --- a/equations/templates/equations/variable_detail.html +++ b/equations/templates/equations/variable_detail.html @@ -4,7 +4,7 @@ {% block content %} <div style="width: 100%; text-align:center;"> -<img src="{{ object.get_render_url }}" style="border: none;" /></div> +<img src="{{ object.render.url }}" style="border: none;" /></div> <br /> <table width="100%"> {% if object.description %} diff --git a/equations/templates/equations/variable_list.html b/equations/templates/equations/variable_list.html index 9ff7a64..dbd6e41 100644 --- a/equations/templates/equations/variable_list.html +++ b/equations/templates/equations/variable_list.html @@ -8,7 +8,7 @@ {% for item in object_list %} <tr style="height:60px;"><td style="width:10%;padding-left:10%;"> <a href="{{ item.get_absolute_url }}" class="imglink"> - <img style="border: none;" src="{{ item.get_render_url }}" /></a> + <img style="border: none;" src="{{ item.render.url }}" /></a> </td><td style="width: 70%"><a href="{{ item.get_absolute_url }}"> {{ item.name }}</a></td></tr> {% endfor %} |