mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-10-31 17:13:08 +00:00 
			
		
		
		
	Improve welcome page
* Improve code readability of calendar details * Add link to AE Dev discord in useful links * Add link to github at the bottom
This commit is contained in:
		| @@ -77,17 +77,14 @@ export class IcsCalendar extends inheritHtmlElement("div") { | ||||
|  | ||||
|     const makePopupTitle = (event: EventImpl) => { | ||||
|       const row = document.createElement("div"); | ||||
|       const title = document.createElement("h4"); | ||||
|       const time = document.createElement("span"); | ||||
|  | ||||
|       title.setAttribute("class", "event-details-row-content"); | ||||
|       title.textContent = event.title; | ||||
|  | ||||
|       time.setAttribute("class", "event-details-row-content"); | ||||
|       time.textContent = `${this.formatDate(event.start)} - ${this.formatDate(event.end)}`; | ||||
|  | ||||
|       row.appendChild(title); | ||||
|       row.appendChild(time); | ||||
|       row.innerHTML = ` | ||||
|         <h4 class="event-details-row-content"> | ||||
|           ${event.title} | ||||
|         </h4> | ||||
|         <span class="event-details-row-content"> | ||||
|           ${this.formatDate(event.start)} - ${this.formatDate(event.end)} | ||||
|         </span> | ||||
|       `; | ||||
|       return makePopupInfo( | ||||
|         row, | ||||
|         "fa-solid fa-calendar-days fa-xl event-detail-row-icon", | ||||
|   | ||||
| @@ -123,7 +123,10 @@ | ||||
|       <ul> | ||||
|         <li> | ||||
|           <i class="fa-brands fa-discord fa-xl"></i> | ||||
|           <a rel="nofollow" target="#" href="https://discord.gg/QvTm3XJrHR">{% trans %}Discord{% endtrans %}</a> | ||||
|           <a rel="nofollow" target="#" href="https://discord.gg/QvTm3XJrHR">{% trans %}Discord AE{% endtrans %}</a> | ||||
|           {% if user.was_subscribed %} | ||||
|             - <a rel="nofollow" target="#" href="https://discord.gg/QvTm3XJrHR">{% trans %}Dev Team{% endtrans %}</a> | ||||
|           {% endif %} | ||||
|         </li> | ||||
|         <li> | ||||
|           <i class="fa-brands fa-facebook fa-xl"></i> | ||||
| @@ -164,6 +167,3 @@ | ||||
|  | ||||
| </div> | ||||
| {% endblock %} | ||||
|  | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -26,6 +26,7 @@ $faceblue: hsl(221, 44%, 41%); | ||||
| $twitblue: hsl(206, 82%, 63%); | ||||
| $discordblurple: #7289da; | ||||
| $instagradient: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); | ||||
| $githubblack: rgb(22, 22, 20); | ||||
|  | ||||
| $shadow-color: rgb(223, 223, 223); | ||||
|  | ||||
|   | ||||
| @@ -822,6 +822,10 @@ footer { | ||||
|     margin-top: 3px; | ||||
|     color: rgba(0, 0, 0, 0.3); | ||||
|   } | ||||
|  | ||||
|   .fa-github { | ||||
|     color: $githubblack; | ||||
|   } | ||||
| } | ||||
|  | ||||
|  | ||||
|   | ||||
| @@ -108,7 +108,8 @@ | ||||
|             <a href="{{ url('core:page', 'docs') }}">{% trans %}Help & Documentation{% endtrans %}</a> | ||||
|             <a href="{{ url('core:page', 'rd') }}">{% trans %}R&D{% endtrans %}</a> | ||||
|           </div> | ||||
|           <a href="https://discord.gg/XK9WfPsUFm" target="_link"> | ||||
|           <a rel="nofollow" href="https://github.com/ae-utbm/sith" target="#"> | ||||
|             <i class="fa-brands fa-github"></i> | ||||
|             {% trans %}Site created by the IT Department of the AE{% endtrans %} | ||||
|           </a> | ||||
|         {% endblock %} | ||||
|   | ||||
| @@ -6,7 +6,7 @@ | ||||
| msgid "" | ||||
| msgstr "" | ||||
| "Report-Msgid-Bugs-To: \n" | ||||
| "POT-Creation-Date: 2025-01-05 15:28+0100\n" | ||||
| "POT-Creation-Date: 2025-01-05 16:39+0100\n" | ||||
| "PO-Revision-Date: 2016-07-18\n" | ||||
| "Last-Translator: Maréchal <thomas.girod@utbm.fr\n" | ||||
| "Language-Team: AE info <ae.info@utbm.fr>\n" | ||||
| @@ -1588,8 +1588,12 @@ msgid "Social media" | ||||
| msgstr "Réseaux sociaux" | ||||
|  | ||||
| #: com/templates/com/news_list.jinja | ||||
| msgid "Discord" | ||||
| msgstr "Discord" | ||||
| msgid "Discord AE" | ||||
| msgstr "Discord AE" | ||||
|  | ||||
| #: com/templates/com/news_list.jinja | ||||
| msgid "Dev Team" | ||||
| msgstr "Pôle Informatique" | ||||
|  | ||||
| #: com/templates/com/news_list.jinja | ||||
| msgid "Facebook" | ||||
| @@ -2049,8 +2053,9 @@ msgid "" | ||||
| "When the ban should be removed. Currently, there is no automatic removal, so " | ||||
| "this is purely indicative. Automatic ban removal may be implemented later on." | ||||
| msgstr "" | ||||
| "Quand le ban devrait être retiré. Actuellement, il n'y a pas de retrait automatique, " | ||||
| "donc ceci est purement indicatif. Le retrait automatique pourra être implémenté plus tard." | ||||
| "Quand le ban devrait être retiré. Actuellement, il n'y a pas de retrait " | ||||
| "automatique, donc ceci est purement indicatif. Le retrait automatique pourra " | ||||
| "être implémenté plus tard." | ||||
|  | ||||
| #: core/models.py pedagogy/models.py | ||||
| msgid "reason" | ||||
| @@ -3426,8 +3431,8 @@ msgid "" | ||||
| "Describe the product. If it's an event's click, give some insights about it, " | ||||
| "like the date (including the year)." | ||||
| msgstr "" | ||||
| "Décrivez le produit. Si c'est un click pour un évènement, donnez quelques détails " | ||||
| "dessus, comme la date (en incluant l'année)." | ||||
| "Décrivez le produit. Si c'est un click pour un évènement, donnez quelques " | ||||
| "détails dessus, comme la date (en incluant l'année)." | ||||
|  | ||||
| #: counter/management/commands/dump_accounts.py | ||||
| msgid "Your AE account has been emptied" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user