-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
resolution of Django template for the example sp #89
Conversation
@@ -0,0 +1,40 @@ | |||
{% extends "base.html" %} | |||
|
|||
{%block tab_active%} active{%endblock%} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{%block tab_active%} active{%endblock%} | |
{% block tab_active %} active{% endblock %} |
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-6 offset-lg-1 order-lg-2"> | ||
<img src="https://picsum.photos/800/600" title="titolo immagine" alt="descrizione immagine" class="img-fluid"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please change the following value with a static image on the local storage, using {% static "..." %}
"https://picsum.photos/800/600"
<div class="card-body pb-5"> | ||
<div class="category-top"> | ||
<svg class="icon"> | ||
<use xlink:href="/bootstrap-italia/dist/svg/sprites.svg#it-calendar"></use> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<use xlink:href="/bootstrap-italia/dist/svg/sprites.svg#it-calendar"></use> | |
<use xlink:href="/bootstrap-italia/dist/svg/sprites.svg#it-calendar"></use> |
please use {% static %}, don't use absolute webpaths
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here and in all the occurences
Co-authored-by: Giuseppe De Marco <giuseppe.demarco@teamdigitale.governo.it>
Co-authored-by: Giuseppe De Marco <giuseppe.demarco@teamdigitale.governo.it>
This PR is relative to the issue #136
We are adding a first mock up of the Service Provider page.