|
|
| (18 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) |
| Zeile 1: |
Zeile 1: |
| <includeonly> | | <includeonly> |
| <!-- Eingabe: Bachelor- und Präsentationsnote als Parameter --> | | <!-- Eingabe: Einzelnoten vom Referenten und Koreferenten --> |
| <!-- Parameter: bachelor_note, praesentation_note --> | | <!-- Parameter: note_ba_ref, note_ba_koref, note_koll_ref, note_koll_koref --> |
| <!-- Ausgabe formatieren --> | | <!-- Durchschnittsnoten berechnen -->{{#set: |
| <div style="margin-top:10px;">
| | |Hat Durchschnittsnote BA={{#expr: ({{{note_ba_ref|0}}} + {{{note_ba_koref|0}}}) / 2 round 2 }} |
| <b>Note Bachelorarbeit:</b> {{{bachelor_note|–}}}<br/>
| | |Hat Durchschnittsnote Kolloquium={{#expr: ({{{note_koll_ref|0}}} + {{{note_koll_koref|0}}}) / 2 round 2 }}}} |
| <b>Note Präsentation:</b> {{{praesentation_note|–}}}<br/>
| | <!-- Gesamtnote berechnen nach Gewichtung (75% / 25%) -->{{#set: |
| <b>Gesamtnote:</b> {{#expr:
| | |Hat Gesamtnote={{#expr: |
| ({{{bachelor_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Bachelorarbeit }} / 100) + | | ((({{{note_ba_ref|0}}} + {{{note_ba_koref|0}}}) / 2) * {{#show: Bewertungskonfiguration | ?Hat Gewicht Bachelorarbeit }} / 100) + |
| ({{{praesentation_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Präsentation }} / 100)}} | | ((({{{note_koll_ref|0}}} + {{{note_koll_koref|0}}}) / 2) * {{#show: Bewertungskonfiguration | ?Hat Gewicht Präsentation }} / 100) |
| </div>
| | round 2 }}}}<!-- Darstellung --> |
| | | <div style="max-width: 100%; margin: 10px auto 0 auto; padding: 10px; background-color: #f9f9f9; border: 1px solid #ccc; border-radius: 8px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;"> |
| <!-- Eingabe: Bachelor- und Präsentationsnote als Parameter --> | | <h3 style="margin-top: 0; color: #2c3e50;"> Notenübersicht</h3> |
| <!-- Parameter: bachelor_note, praesentation_note -->
| | <table style="width: 100%; border-collapse: collapse; margin-bottom: 20px;"> |
| | | <tr style="background-color: #e9ecef;"> |
| <div style="display: flex; justify-content: space-between; background-color: #f8f9fa; padding: 15px; border: 1px solid #e1e4e8; border-radius: 6px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; max-width: 800px; margin-top: 10px;"> | | <th style="text-align: left; padding: 8px; border-bottom: 1px solid #ccc;"> </th> |
| <div style="flex: 1; text-align: center;"> | | <th style="text-align: center; padding: 8px; border-bottom: 1px solid #ccc;">Bachelorarbeit</th> |
| <div style="font-weight: bold; font-size: 1.1em;">Note Bachelorarbeit</div>
| | <th style="text-align: center; padding: 8px; border-bottom: 1px solid #ccc;">Kolloquium</th> |
| <div style="margin-top: 5px;">{{{bachelor_note|–}}}</div>
| | </tr> |
| </div>
| | <tr> |
| <div style="flex: 1; text-align: center;">
| | <td style="padding: 8px;"><strong>Referent</strong></td> |
| <div style="font-weight: bold; font-size: 1.1em;">Note Präsentation</div> | | <td style="text-align: center; padding: 8px;">{{{note_ba_ref|–}}}</td> |
| <div style="margin-top: 5px;">{{{praesentation_note|–}}}</div> | | <td style="text-align: center; padding: 8px;">{{{note_koll_ref|–}}}</td> |
| </div> | | </tr> |
| <div style="flex: 1; text-align: center;"> | | <tr> |
| <div style="font-weight: bold; font-size: 1.1em;">Gesamtnote</div> | | <td style="padding: 8px;"><strong>Koreferent</strong></td> |
| <div style="margin-top: 5px;"> | | <td style="text-align: center; padding: 8px;">{{{note_ba_koref|–}}}</td> |
| {{#expr:
| | <td style="text-align: center; padding: 8px;">{{{note_koll_koref|–}}}</td> |
| ({{{bachelor_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Bachelorarbeit }} / 100) +
| | </tr> |
| ({{{praesentation_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Präsentation }} / 100)
| | </table> |
| }}
| | <!-- Durchschnitt + Gesamtnote --> |
| </div>
| | <div style="display: flex; justify-content: space-between; gap: 20px;"> |
| </div> | | <div style="flex: 1; text-align: center; padding: 10px; background-color: #ffffff; border: 1px solid #e1e4e8; border-radius: 6px;"> |
| </div> | | <div style="font-weight: bold;">Durchschnitt BA</div> |
| | | <div>{{#show: {{FULLPAGENAME}} | ?Hat Durchschnittsnote BA |link=none }}</div> |
| | |
| <div style="display: flex; justify-content: space-between; background-color: #f8f9fa; padding: 15px; border: 1px solid #e1e4e8; border-radius: 6px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; max-width: 800px; margin-top: 10px;"> | |
| <div style="flex: 1; text-align: center;">
| |
| <div style="font-weight: bold; font-size: 1.1em;">Note Bachelorarbeit</div>
| |
| <div style="margin-top: 5px;">{{{bachelor_note|–}}}</div> | |
| </div> | |
| <div style="flex: 1; text-align: center;"> | |
| <div style="font-weight: bold; font-size: 1.1em;">Note Präsentation</div>
| |
| <div style="margin-top: 5px;">{{{praesentation_note|–}}}</div>
| |
| </div>
| |
| <div style="flex: 1; text-align: center;">
| |
| <div style="font-weight: bold; font-size: 1.1em;">Gesamtnote</div>
| |
| <div style="margin-top: 5px;">
| |
| {{#expr:
| |
| ({{{bachelor_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Bachelorarbeit }} / 100) +
| |
| ({{{praesentation_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Präsentation }} / 100)
| |
| }}
| |
| </div> | | </div> |
| </div>
| | <div style="flex: 1; text-align: center; padding: 10px; background-color: #ffffff; border: 1px solid #e1e4e8; border-radius: 6px;"> |
| </div>
| | <div style="font-weight: bold;">Durchschnitt Kolloquium</div> |
| | | <div>{{#show: {{FULLPAGENAME}} | ?Hat Durchschnittsnote Kolloquium |link=none }}</div> |
| <div style="display: flex; justify-content: space-between; background-color: #f8f9fa; padding: 15px; border: 1px solid #e1e4e8; border-radius: 6px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; max-width: 800px; margin-top: 10px;"> | |
| <div style="flex: 1; text-align: center;">
| |
| <div style="font-weight: bold; font-size: 1.1em;">Note Bachelorarbeit</div>
| |
| <div style="margin-top: 5px;">{{{bachelor_note|–}}}</div>
| |
| </div>
| |
| <div style="flex: 1; text-align: center;">
| |
| <div style="font-weight: bold; font-size: 1.1em;">Note Präsentation</div>
| |
| <div style="margin-top: 5px;">{{{praesentation_note|–}}}</div>
| |
| </div>
| |
| <div style="flex: 1; text-align: center;">
| |
| <div style="font-weight: bold; font-size: 1.1em;">Gesamtnote</div>
| |
| <div style="margin-top: 5px;">
| |
| <span style="display: inline-block;">
| |
| {{#expr:
| |
| ({{{bachelor_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Bachelorarbeit }} / 100) +
| |
| ({{{praesentation_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Präsentation }} / 100)
| |
| }}
| |
| </span>
| |
| </div> | | </div> |
| </div>
| | <div style="flex: 1; text-align: center; padding: 10px; background-color: #ffffff; border: 1px solid #e1e4e8; border-radius: 6px;"> |
| </div>
| | <div style="font-weight: bold;">Gesamtnote</div> |
| | | <div>{{#show: {{FULLPAGENAME}} | ?Hat Gesamtnote |link=none }}</div> |
| <div style="display: flex; justify-content: space-between; background-color: #f8f9fa; padding: 15px; border: 1px solid #e1e4e8; border-radius: 6px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; max-width: 800px; margin-top: 10px;"> | |
| <div style="flex: 1; text-align: center;">
| |
| <div style="font-weight: bold; font-size: 1.1em;">Note Bachelorarbeit</div>
| |
| <div style="margin-top: 5px;">{{{bachelor_note|–}}}</div>
| |
| </div>
| |
| <div style="flex: 1; text-align: center;">
| |
| <div style="font-weight: bold; font-size: 1.1em;">Note Präsentation</div>
| |
| <div style="margin-top: 5px;">{{{praesentation_note|–}}}</div>
| |
| </div>
| |
| <div style="flex: 1; text-align: center;">
| |
| <div style="font-weight: bold; font-size: 1.1em;">Gesamtnote</div>
| |
| <div style="margin-top: 5px;">
| |
| <span style="display: inline-block;">
| |
| {{#expr:
| |
| ({{{bachelor_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Bachelorarbeit }} / 100) +
| |
| ({{{praesentation_note|0}}} * {{#show: Bewertungskonfiguration | ?Hat Gewicht Präsentation }} / 100)
| |
| }}
| |
| </span>
| |
| </div> | | </div> |
| </div> | | </div> |
| </div> | | </div> |
|
| |
| </includeonly> | | </includeonly> |
| <noinclude>
| |
| {{Vorlage:NoteBerechnung
| |
| | bachelor_note=2.3
| |
| | praesentation_note=1.0
| |
| }}
| |