Open main menu

Changes

Template:Infobox Law Firm

4,844 bytes added, 15:14, 25 July 2007
New page: <noinclude> <!-- Description of the Template --> This template creates an infobox with the general information relevant to a law firm. == Usage == Simply copy the following code and pas...
<noinclude> <!-- Description of the Template -->

This template creates an infobox with the general information relevant to a law firm.

== Usage ==

Simply copy the following code and paste it at the top of the law firm entry, then fill in the blanks. The ''firm_name'', ''num_offices'', ''num_attorneys'', and ''date_founded'' fields are obligatory. Other entries left blank will be excluded from the displayed infobox.

<pre>
{{Infobox Law Firm
| firm_name =
| firm_logo =
| headquarters =
| num_offices =
| num_attorneys =
| num_employees =
| practice_areas = <!-- MAJOR practice areas only; if they do everything "General Practice" -->
| key_people = <!-- chairmen and CEOs, not every famous lawyer in the firm -->
| revenue = <!-- amount (year) -->
| date_founded =
| founder =
| company_type = <!-- e.g., Limited liability partnership or Professional corporation -->
| homepage =
| dissolved = <!-- Date/Reason the company dissolved, e.g., merger or bankruptcy -->
}}
</pre>

== Example ==

Suppose we fill in the blanks like this:

<pre>
{{Infobox Law Firm
| firm_name = Sample Law Firm LLP
| firm_logo = [[Image:Logo.png|100px]]
| headquarters = Pensacola, Florida
| num_offices = 7
| num_attorneys = 250+
| num_employees = 550+
| practice_areas = General practice, especially admiralty law
| key_people = Billy Bob Partner (Chairman), Missy Smith (CEO)
| revenue = $1.7 billion (1997)
| date_founded = September 20, 1997
| founder =
| company_type = Limited Liability Partnership
| homepage = [http://www.samplelawfirmllc.com SampleLawFirmLLC.com]
| dissolved = September 21, 1997 (merger with Other Law Firm LLC)
}}
</pre>

<!-- Sample Infobox -->
{{Infobox Law Firm
| firm_name = Sample Law Firm LLP
| firm_logo = [[Image:Logo.png|100px]]
| headquarters = Pensacola, Florida
| num_offices = 7
| num_attorneys = 250+
| num_employees = 550+
| practice_areas = General practice, especially admiralty law
| key_people = Billy Bob Partner (Chairman), Missy Smith (CEO)
| revenue = $1.7 billion (1997)
| date_founded = September 20, 1997
| founder =
| company_type = Limited Liability Partnership
| homepage = [http://www.samplelawfirmllc.com SampleLawFirmLLC.com]
| dissolved = September 21, 1997 (merger with Other Law Firm LLC)
}}

The infobox will display like this on the right. Notice the ''founder'' field is not displayed because we left it blank.

<!-- Categories -->
[[Category:Infobox templates|Law Firm]]

<!-- The Actual Template -->
</noinclude><includeonly>{| class="infobox" style="width:23em; font-size:90%;"
|-
|colspan="2" style="text-align: center; font-size:larger;"| '''{{{firm_name}}}'''
{{#if:{{{firm_logo|}}}|<tr><td colspan="2" style="text-align:center; padding:16px 0 16px 0;">{{{firm_logo}}}</td></tr>}}<!--
-->{{#if:{{{headquarters|}}} | <tr><th style="text-align:right; padding-right:0.75em;">Headquarters</th><td>{{{headquarters}}}</td></tr>}} <!-- city or, e.g., "Decentralized" -->
|-
!style="text-align:right; padding-right:0.75em;"| # of Offices
| {{{num_offices}}}
|-
!style="text-align:right; padding-right:0.75em;"| # of Attorneys
| {{{num_attorneys}}}
{{#if:{{{num_employees|}}} | <tr><th style="text-align:right; padding-right:0.75em;"> # of Employees</th><td>{{{num_employees}}}</td></tr>}} <!-- Total employees, including attorneys and staff --><!--
-->{{#if:{{{practice_areas|}}} | <tr><th style="text-align:right; padding-right:0.75em;">Major Practice Areas</th><td>{{{practice_areas}}}</td></tr>}} <!-- If they do everything, just put "General Practice" --><!--
-->{{#if:{{{key_people|}}} | <tr><th style="text-align:right; padding-right:0.75em;">Key People</th><td>{{{key_people}}}</td></tr>}} <!-- This is meant for Chairmen and CEOs, not every famous lawyer/partner in the firm --><!--
-->{{#if:{{{revenue|}}} | <tr><th style="text-align:right; padding-right:0.75em;">Revenue</th><td>{{{revenue}}}</td></tr>}}
|-
!style="text-align:right; padding-right:0.75em;"| Date Founded
| {{{date_founded}}}
{{#if:{{{founder|}}} | <tr><th style="text-align:right; padding-right:0.75em;">Founder</th><td>{{{founder}}}</td></tr>}}
{{#if:{{{company_type|}}} | <tr><th style="text-align:right; padding-right:0.75em;">Company Type</th><td>{{{company_type}}}</td></tr>}} <!-- e.g., Limited Liability Partnership or Professional Corporation -->
{{#if:{{{homepage|}}} | <tr><th style="text-align:right; padding-right:0.75em;">Website</th><td>{{{homepage}}}</td></tr>}}
{{#if:{{{dissolved|}}} | <tr><th style="text-align:right; padding-right:0.75em;">Dissolved</th><td>{{{dissolved}}}</td></tr>}}
|}</includeonly>